diff options
author | Peter Huewe <peterhuewe@gmx.de> | 2010-07-15 04:48:26 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2010-07-15 22:05:20 -0400 |
commit | 6df7b80c64a3489782edfdee12c8828bb6a8a317 (patch) | |
tree | 24504441a69f483903745592d1d821408cc5906c /drivers/atm | |
parent | e80d3f08e2ff055b060785442a7b47c263d7e978 (diff) |
atm: Convert pci_table entries to PCI_VDEVICE (if PCI_ANY_ID is used)
This patch converts pci_table entries, where .subvendor=PCI_ANY_ID and
.subdevice=PCI_ANY_ID, .class=0 and .class_mask=0, to use the
PCI_VDEVICE macro, and thus improves readability.
Signed-off-by: Peter Huewe <peterhuewe@gmx.de>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/atm')
-rw-r--r-- | drivers/atm/nicstar.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/atm/nicstar.c b/drivers/atm/nicstar.c index cff337ef85fd..729a149b6b2b 100644 --- a/drivers/atm/nicstar.c +++ b/drivers/atm/nicstar.c | |||
@@ -264,8 +264,7 @@ static void __devexit nicstar_remove_one(struct pci_dev *pcidev) | |||
264 | } | 264 | } |
265 | 265 | ||
266 | static struct pci_device_id nicstar_pci_tbl[] __devinitdata = { | 266 | static struct pci_device_id nicstar_pci_tbl[] __devinitdata = { |
267 | {PCI_VENDOR_ID_IDT, PCI_DEVICE_ID_IDT_IDT77201, | 267 | { PCI_VDEVICE(IDT, PCI_DEVICE_ID_IDT_IDT77201), 0 }, |
268 | PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0}, | ||
269 | {0,} /* terminate list */ | 268 | {0,} /* terminate list */ |
270 | }; | 269 | }; |
271 | 270 | ||