diff options
author | Akinobu Mita <akinobu.mita@gmail.com> | 2010-08-27 15:08:36 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2010-08-28 18:37:05 -0400 |
commit | d08336e9998b1004b2baad62325d34349a593137 (patch) | |
tree | 3238c830088b3bb32cc927cf278dd25001a40abc /drivers/net/starfire.c | |
parent | 6a499b242f7d1ebf13f5bc386e08e80603f79e2a (diff) |
starfire: use PCI_VDEVICE
Signed-off-by: Akinobu Mita <akinobu.mita@gmail.com>
Cc: Ion Badulescu <ionut@badula.org>
Cc: "David S. Miller" <davem@davemloft.net>
Cc: netdev@vger.kernel.org
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/starfire.c')
-rw-r--r-- | drivers/net/starfire.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/starfire.c b/drivers/net/starfire.c index a42b6873370b..26c363462856 100644 --- a/drivers/net/starfire.c +++ b/drivers/net/starfire.c | |||
@@ -302,7 +302,7 @@ enum chipset { | |||
302 | }; | 302 | }; |
303 | 303 | ||
304 | static DEFINE_PCI_DEVICE_TABLE(starfire_pci_tbl) = { | 304 | static DEFINE_PCI_DEVICE_TABLE(starfire_pci_tbl) = { |
305 | { 0x9004, 0x6915, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CH_6915 }, | 305 | { PCI_VDEVICE(ADAPTEC, 0x6915), CH_6915 }, |
306 | { 0, } | 306 | { 0, } |
307 | }; | 307 | }; |
308 | MODULE_DEVICE_TABLE(pci, starfire_pci_tbl); | 308 | MODULE_DEVICE_TABLE(pci, starfire_pci_tbl); |