diff options
-rw-r--r-- | drivers/net/igb/e1000_82575.c | 1 | ||||
-rw-r--r-- | drivers/net/igb/e1000_hw.h | 1 | ||||
-rw-r--r-- | drivers/net/igb/igb_main.c | 1 |
3 files changed, 3 insertions, 0 deletions
diff --git a/drivers/net/igb/e1000_82575.c b/drivers/net/igb/e1000_82575.c index ea63a215c909..adfe2e18ede8 100644 --- a/drivers/net/igb/e1000_82575.c +++ b/drivers/net/igb/e1000_82575.c | |||
@@ -80,6 +80,7 @@ static s32 igb_get_invariants_82575(struct e1000_hw *hw) | |||
80 | mac->type = e1000_82575; | 80 | mac->type = e1000_82575; |
81 | break; | 81 | break; |
82 | case E1000_DEV_ID_82576: | 82 | case E1000_DEV_ID_82576: |
83 | case E1000_DEV_ID_82576_NS: | ||
83 | case E1000_DEV_ID_82576_FIBER: | 84 | case E1000_DEV_ID_82576_FIBER: |
84 | case E1000_DEV_ID_82576_SERDES: | 85 | case E1000_DEV_ID_82576_SERDES: |
85 | mac->type = e1000_82576; | 86 | mac->type = e1000_82576; |
diff --git a/drivers/net/igb/e1000_hw.h b/drivers/net/igb/e1000_hw.h index d793dca1eef6..4db36026f82b 100644 --- a/drivers/net/igb/e1000_hw.h +++ b/drivers/net/igb/e1000_hw.h | |||
@@ -40,6 +40,7 @@ struct e1000_hw; | |||
40 | #define E1000_DEV_ID_82576 0x10C9 | 40 | #define E1000_DEV_ID_82576 0x10C9 |
41 | #define E1000_DEV_ID_82576_FIBER 0x10E6 | 41 | #define E1000_DEV_ID_82576_FIBER 0x10E6 |
42 | #define E1000_DEV_ID_82576_SERDES 0x10E7 | 42 | #define E1000_DEV_ID_82576_SERDES 0x10E7 |
43 | #define E1000_DEV_ID_82576_NS 0x150A | ||
43 | #define E1000_DEV_ID_82575EB_COPPER 0x10A7 | 44 | #define E1000_DEV_ID_82575EB_COPPER 0x10A7 |
44 | #define E1000_DEV_ID_82575EB_FIBER_SERDES 0x10A9 | 45 | #define E1000_DEV_ID_82575EB_FIBER_SERDES 0x10A9 |
45 | #define E1000_DEV_ID_82575GB_QUAD_COPPER 0x10D6 | 46 | #define E1000_DEV_ID_82575GB_QUAD_COPPER 0x10D6 |
diff --git a/drivers/net/igb/igb_main.c b/drivers/net/igb/igb_main.c index ff1cd4a1ec1f..e464dc024ee6 100644 --- a/drivers/net/igb/igb_main.c +++ b/drivers/net/igb/igb_main.c | |||
@@ -62,6 +62,7 @@ static const struct e1000_info *igb_info_tbl[] = { | |||
62 | 62 | ||
63 | static struct pci_device_id igb_pci_tbl[] = { | 63 | static struct pci_device_id igb_pci_tbl[] = { |
64 | { PCI_VDEVICE(INTEL, E1000_DEV_ID_82576), board_82575 }, | 64 | { PCI_VDEVICE(INTEL, E1000_DEV_ID_82576), board_82575 }, |
65 | { PCI_VDEVICE(INTEL, E1000_DEV_ID_82576_NS), board_82575 }, | ||
65 | { PCI_VDEVICE(INTEL, E1000_DEV_ID_82576_FIBER), board_82575 }, | 66 | { PCI_VDEVICE(INTEL, E1000_DEV_ID_82576_FIBER), board_82575 }, |
66 | { PCI_VDEVICE(INTEL, E1000_DEV_ID_82576_SERDES), board_82575 }, | 67 | { PCI_VDEVICE(INTEL, E1000_DEV_ID_82576_SERDES), board_82575 }, |
67 | { PCI_VDEVICE(INTEL, E1000_DEV_ID_82575EB_COPPER), board_82575 }, | 68 | { PCI_VDEVICE(INTEL, E1000_DEV_ID_82575EB_COPPER), board_82575 }, |