diff options
author | Bruce Allan <bruce.w.allan@intel.com> | 2009-03-25 02:28:02 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2009-03-25 02:28:02 -0400 |
commit | bef28b11597a4da9ef3b8a51776b8cb14b427e5e (patch) | |
tree | 349b29c1b9a174289aa33a25cb57d33ea16a9ad4 | |
parent | b2f5e7cd3dee2ed721bf0675e1a1ddebb849aee6 (diff) |
e1000e: add support for 82574 device ID 0x10F6
Add device ID for a new variant of the 82574 adapter.
Signed-off-by: Bruce Allan <bruce.w.allan@intel.com>
Acked-by: John Ronciak <john.ronciak@intel.com>
Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
-rw-r--r-- | drivers/net/e1000e/hw.h | 1 | ||||
-rw-r--r-- | drivers/net/e1000e/netdev.c | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/drivers/net/e1000e/hw.h b/drivers/net/e1000e/hw.h index 11a2f203a01c..d8b82296f41e 100644 --- a/drivers/net/e1000e/hw.h +++ b/drivers/net/e1000e/hw.h | |||
@@ -339,6 +339,7 @@ enum e1e_registers { | |||
339 | #define E1000_DEV_ID_82573E_IAMT 0x108C | 339 | #define E1000_DEV_ID_82573E_IAMT 0x108C |
340 | #define E1000_DEV_ID_82573L 0x109A | 340 | #define E1000_DEV_ID_82573L 0x109A |
341 | #define E1000_DEV_ID_82574L 0x10D3 | 341 | #define E1000_DEV_ID_82574L 0x10D3 |
342 | #define E1000_DEV_ID_82574LA 0x10F6 | ||
342 | #define E1000_DEV_ID_82583V 0x150C | 343 | #define E1000_DEV_ID_82583V 0x150C |
343 | 344 | ||
344 | #define E1000_DEV_ID_80003ES2LAN_COPPER_DPT 0x1096 | 345 | #define E1000_DEV_ID_80003ES2LAN_COPPER_DPT 0x1096 |
diff --git a/drivers/net/e1000e/netdev.c b/drivers/net/e1000e/netdev.c index f388a0179325..15424bad5694 100644 --- a/drivers/net/e1000e/netdev.c +++ b/drivers/net/e1000e/netdev.c | |||
@@ -5130,6 +5130,7 @@ static struct pci_device_id e1000_pci_tbl[] = { | |||
5130 | { PCI_VDEVICE(INTEL, E1000_DEV_ID_82573L), board_82573 }, | 5130 | { PCI_VDEVICE(INTEL, E1000_DEV_ID_82573L), board_82573 }, |
5131 | 5131 | ||
5132 | { PCI_VDEVICE(INTEL, E1000_DEV_ID_82574L), board_82574 }, | 5132 | { PCI_VDEVICE(INTEL, E1000_DEV_ID_82574L), board_82574 }, |
5133 | { PCI_VDEVICE(INTEL, E1000_DEV_ID_82574LA), board_82574 }, | ||
5133 | { PCI_VDEVICE(INTEL, E1000_DEV_ID_82583V), board_82583 }, | 5134 | { PCI_VDEVICE(INTEL, E1000_DEV_ID_82583V), board_82583 }, |
5134 | 5135 | ||
5135 | { PCI_VDEVICE(INTEL, E1000_DEV_ID_80003ES2LAN_COPPER_DPT), | 5136 | { PCI_VDEVICE(INTEL, E1000_DEV_ID_80003ES2LAN_COPPER_DPT), |