diff options
author | françois romieu <romieu@fr.zoreil.com> | 2011-09-29 20:39:23 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2011-10-03 14:09:10 -0400 |
commit | a355d865f99d0dbbaba5595416e292592bd347dd (patch) | |
tree | 4c13c7f15dc2fdc382431b00c271cbbab88be5fa | |
parent | 5d472b7377ce5f02929ae0bed53407aa795571dd (diff) |
tehuti: shorten PCI device table.
Signed-off-by: Francois Romieu <romieu@fr.zoreil.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
-rw-r--r-- | drivers/net/ethernet/tehuti/tehuti.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/drivers/net/ethernet/tehuti/tehuti.c b/drivers/net/ethernet/tehuti/tehuti.c index 371ab7abd377..1151cf994cde 100644 --- a/drivers/net/ethernet/tehuti/tehuti.c +++ b/drivers/net/ethernet/tehuti/tehuti.c | |||
@@ -67,10 +67,10 @@ | |||
67 | #include "tehuti.h" | 67 | #include "tehuti.h" |
68 | 68 | ||
69 | static DEFINE_PCI_DEVICE_TABLE(bdx_pci_tbl) = { | 69 | static DEFINE_PCI_DEVICE_TABLE(bdx_pci_tbl) = { |
70 | {0x1FC9, 0x3009, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0}, | 70 | { PCI_VDEVICE(TEHUTI, 0x3009), }, |
71 | {0x1FC9, 0x3010, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0}, | 71 | { PCI_VDEVICE(TEHUTI, 0x3010), }, |
72 | {0x1FC9, 0x3014, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0}, | 72 | { PCI_VDEVICE(TEHUTI, 0x3014), }, |
73 | {0} | 73 | { 0 } |
74 | }; | 74 | }; |
75 | 75 | ||
76 | MODULE_DEVICE_TABLE(pci, bdx_pci_tbl); | 76 | MODULE_DEVICE_TABLE(pci, bdx_pci_tbl); |