Commit c9634ac1b79bf7b26ceabff16c1fd36943cf5511
Committed by
David S. Miller
1 parent
6df7b80c64
Exists in
master
and in
39 other branches
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>
Showing 1 changed file with 2 additions and 4 deletions Side-by-side Diff
drivers/atm/zatm.c
... | ... | @@ -1637,10 +1637,8 @@ |
1637 | 1637 | MODULE_LICENSE("GPL"); |
1638 | 1638 | |
1639 | 1639 | static struct pci_device_id zatm_pci_tbl[] __devinitdata = { |
1640 | - { PCI_VENDOR_ID_ZEITNET, PCI_DEVICE_ID_ZEITNET_1221, | |
1641 | - PCI_ANY_ID, PCI_ANY_ID, 0, 0, ZATM_COPPER }, | |
1642 | - { PCI_VENDOR_ID_ZEITNET, PCI_DEVICE_ID_ZEITNET_1225, | |
1643 | - PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0 }, | |
1640 | + { PCI_VDEVICE(ZEITNET, PCI_DEVICE_ID_ZEITNET_1221), ZATM_COPPER }, | |
1641 | + { PCI_VDEVICE(ZEITNET, PCI_DEVICE_ID_ZEITNET_1225), 0 }, | |
1644 | 1642 | { 0, } |
1645 | 1643 | }; |
1646 | 1644 | MODULE_DEVICE_TABLE(pci, zatm_pci_tbl); |