Skip to content

Commit

Permalink
recognize Intel 82540EP LP by e1000
Browse files Browse the repository at this point in the history
Change-Id: I8868963ba09ce1dffa9416c9ece29c7315dee4cd
  • Loading branch information
ThomasGoering authored and bengras committed Dec 12, 2014
1 parent 5ae1a53 commit e1131d9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
2 changes: 2 additions & 0 deletions minix/drivers/net/e1000/e1000.c
Original file line number Diff line number Diff line change
Expand Up @@ -106,6 +106,7 @@ e1000_map_flash(e1000_t * e, int devind, int did)
case E1000_DEV_ID_82540EM:
case E1000_DEV_ID_82545EM:
case E1000_DEV_ID_82540EP:
case E1000_DEV_ID_82540EP_LP:
return; /* don't even try */

/* 82566/82567/82562V series support mapping 4kB of flash memory. */
Expand Down Expand Up @@ -168,6 +169,7 @@ e1000_probe(e1000_t * e, int skip)

case E1000_DEV_ID_82540EM:
case E1000_DEV_ID_82545EM:
case E1000_DEV_ID_82540EP_LP:
e->eeprom_done_bit = (1 << 4);
e->eeprom_addr_off = 8;
break;
Expand Down
1 change: 1 addition & 0 deletions minix/drivers/net/e1000/e1000.conf
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ service e1000
;
pci device 8086:100e;
pci device 8086:100f;
pci device 8086:101e;
pci device 8086:107c;
pci device 8086:10cd;
pci device 8086:10d3;
Expand Down

0 comments on commit e1131d9

Please sign in to comment.