Commit 12c8471a1e8af98b7e9a6917c393e0f85b582550
Committed by
David S. Miller
1 parent
d1853dc8fa
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/ambassador.c
... | ... | @@ -2371,10 +2371,8 @@ |
2371 | 2371 | /********** module entry **********/ |
2372 | 2372 | |
2373 | 2373 | static struct pci_device_id amb_pci_tbl[] = { |
2374 | - { PCI_VENDOR_ID_MADGE, PCI_DEVICE_ID_MADGE_AMBASSADOR, PCI_ANY_ID, PCI_ANY_ID, | |
2375 | - 0, 0, 0 }, | |
2376 | - { PCI_VENDOR_ID_MADGE, PCI_DEVICE_ID_MADGE_AMBASSADOR_BAD, PCI_ANY_ID, PCI_ANY_ID, | |
2377 | - 0, 0, 0 }, | |
2374 | + { PCI_VDEVICE(MADGE, PCI_DEVICE_ID_MADGE_AMBASSADOR), 0 }, | |
2375 | + { PCI_VDEVICE(MADGE, PCI_DEVICE_ID_MADGE_AMBASSADOR_BAD), 0 }, | |
2378 | 2376 | { 0, } |
2379 | 2377 | }; |
2380 | 2378 |