diff options
author | Jeff Garzik <jeff@garzik.org> | 2006-09-28 20:21:59 -0400 |
---|---|---|
committer | Jeff Garzik <jeff@garzik.org> | 2006-09-28 20:21:59 -0400 |
commit | 2d2744fc8be620a2dc469cf48349e3e704119f1b (patch) | |
tree | 86dde4c7fc9ec18127d1aa3a748e0bc4e8ad03f3 /drivers/ata/pata_artop.c | |
parent | 35aa7a436c0901fd6f352eff347f58448c141a25 (diff) |
[libata] PCI ID table cleanup in various drivers
* Use PCI_VDEVICE() macro
* const-ify pci_device_id table
* standardize list terminator as "{ }"
* convert spaces to tab in pci_driver struct (Alan-ism)
* various minor whitespace cleanups
Signed-off-by: Jeff Garzik <jeff@garzik.org>
Diffstat (limited to 'drivers/ata/pata_artop.c')
-rw-r--r-- | drivers/ata/pata_artop.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/drivers/ata/pata_artop.c b/drivers/ata/pata_artop.c index c4ccb75a4f1d..49565ef945f8 100644 --- a/drivers/ata/pata_artop.c +++ b/drivers/ata/pata_artop.c | |||
@@ -475,11 +475,12 @@ static int artop_init_one (struct pci_dev *pdev, const struct pci_device_id *id) | |||
475 | } | 475 | } |
476 | 476 | ||
477 | static const struct pci_device_id artop_pci_tbl[] = { | 477 | static const struct pci_device_id artop_pci_tbl[] = { |
478 | { 0x1191, 0x0005, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0}, | 478 | { PCI_VDEVICE(ARTOP, 0x0005), 0 }, |
479 | { 0x1191, 0x0006, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 1}, | 479 | { PCI_VDEVICE(ARTOP, 0x0006), 1 }, |
480 | { 0x1191, 0x0007, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 1}, | 480 | { PCI_VDEVICE(ARTOP, 0x0007), 1 }, |
481 | { 0x1191, 0x0008, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 2}, | 481 | { PCI_VDEVICE(ARTOP, 0x0008), 2 }, |
482 | { 0x1191, 0x0009, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 2}, | 482 | { PCI_VDEVICE(ARTOP, 0x0009), 2 }, |
483 | |||
483 | { } /* terminate list */ | 484 | { } /* terminate list */ |
484 | }; | 485 | }; |
485 | 486 | ||
@@ -500,7 +501,6 @@ static void __exit artop_exit(void) | |||
500 | pci_unregister_driver(&artop_pci_driver); | 501 | pci_unregister_driver(&artop_pci_driver); |
501 | } | 502 | } |
502 | 503 | ||
503 | |||
504 | module_init(artop_init); | 504 | module_init(artop_init); |
505 | module_exit(artop_exit); | 505 | module_exit(artop_exit); |
506 | 506 | ||