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_optidma.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_optidma.c')
-rw-r--r-- | drivers/ata/pata_optidma.c | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/drivers/ata/pata_optidma.c b/drivers/ata/pata_optidma.c index 7296a20cd107..c6906b4215de 100644 --- a/drivers/ata/pata_optidma.c +++ b/drivers/ata/pata_optidma.c | |||
@@ -512,12 +512,13 @@ static int optidma_init_one(struct pci_dev *dev, const struct pci_device_id *id) | |||
512 | } | 512 | } |
513 | 513 | ||
514 | static const struct pci_device_id optidma[] = { | 514 | static const struct pci_device_id optidma[] = { |
515 | { PCI_DEVICE(0x1045, 0xD568), }, /* Opti 82C700 */ | 515 | { PCI_VDEVICE(OPTI, 0xD568), }, /* Opti 82C700 */ |
516 | { 0, }, | 516 | |
517 | { }, | ||
517 | }; | 518 | }; |
518 | 519 | ||
519 | static struct pci_driver optidma_pci_driver = { | 520 | static struct pci_driver optidma_pci_driver = { |
520 | .name = DRV_NAME, | 521 | .name = DRV_NAME, |
521 | .id_table = optidma, | 522 | .id_table = optidma, |
522 | .probe = optidma_init_one, | 523 | .probe = optidma_init_one, |
523 | .remove = ata_pci_remove_one | 524 | .remove = ata_pci_remove_one |
@@ -528,13 +529,11 @@ static int __init optidma_init(void) | |||
528 | return pci_register_driver(&optidma_pci_driver); | 529 | return pci_register_driver(&optidma_pci_driver); |
529 | } | 530 | } |
530 | 531 | ||
531 | |||
532 | static void __exit optidma_exit(void) | 532 | static void __exit optidma_exit(void) |
533 | { | 533 | { |
534 | pci_unregister_driver(&optidma_pci_driver); | 534 | pci_unregister_driver(&optidma_pci_driver); |
535 | } | 535 | } |
536 | 536 | ||
537 | |||
538 | MODULE_AUTHOR("Alan Cox"); | 537 | MODULE_AUTHOR("Alan Cox"); |
539 | MODULE_DESCRIPTION("low-level driver for Opti Firestar/Firestar Plus"); | 538 | MODULE_DESCRIPTION("low-level driver for Opti Firestar/Firestar Plus"); |
540 | MODULE_LICENSE("GPL"); | 539 | MODULE_LICENSE("GPL"); |