diff options
author | Alexander Duyck <alexander.h.duyck@intel.com> | 2009-03-13 16:42:15 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2009-03-14 15:41:05 -0400 |
commit | 9eb2341d0df6e5d33508008879987bf5bb146804 (patch) | |
tree | 5388c7e412fd74b509364f5e9d7ee699928d63d6 /drivers/net/igb | |
parent | 75f4f382e3f92d1d2fcb77fe6ed7beda19185f0f (diff) |
igb: add support for another dual port 82576 non-security nic
Adding device id to support 82576NS dual port copper
NIC.
Signed-off-by: Alexander Duyck <alexander.h.duyck@intel.com>
Acked-by: Jesse Brandeburg <jesse.brandeburg@intel.com>
Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/igb')
-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 }, |