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/sata_svw.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/sata_svw.c')
-rw-r--r-- | drivers/ata/sata_svw.c | 15 |
1 files changed, 6 insertions, 9 deletions
diff --git a/drivers/ata/sata_svw.c b/drivers/ata/sata_svw.c index d6d6658d8328..84025a2fd5be 100644 --- a/drivers/ata/sata_svw.c +++ b/drivers/ata/sata_svw.c | |||
@@ -469,15 +469,15 @@ err_out: | |||
469 | * controller | 469 | * controller |
470 | * */ | 470 | * */ |
471 | static const struct pci_device_id k2_sata_pci_tbl[] = { | 471 | static const struct pci_device_id k2_sata_pci_tbl[] = { |
472 | { 0x1166, 0x0240, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 4 }, | 472 | { PCI_VDEVICE(SERVERWORKS, 0x0240), 4 }, |
473 | { 0x1166, 0x0241, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 4 }, | 473 | { PCI_VDEVICE(SERVERWORKS, 0x0241), 4 }, |
474 | { 0x1166, 0x0242, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 8 }, | 474 | { PCI_VDEVICE(SERVERWORKS, 0x0242), 8 }, |
475 | { 0x1166, 0x024a, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 4 }, | 475 | { PCI_VDEVICE(SERVERWORKS, 0x024a), 4 }, |
476 | { 0x1166, 0x024b, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 4 }, | 476 | { PCI_VDEVICE(SERVERWORKS, 0x024b), 4 }, |
477 | |||
477 | { } | 478 | { } |
478 | }; | 479 | }; |
479 | 480 | ||
480 | |||
481 | static struct pci_driver k2_sata_pci_driver = { | 481 | static struct pci_driver k2_sata_pci_driver = { |
482 | .name = DRV_NAME, | 482 | .name = DRV_NAME, |
483 | .id_table = k2_sata_pci_tbl, | 483 | .id_table = k2_sata_pci_tbl, |
@@ -485,19 +485,16 @@ static struct pci_driver k2_sata_pci_driver = { | |||
485 | .remove = ata_pci_remove_one, | 485 | .remove = ata_pci_remove_one, |
486 | }; | 486 | }; |
487 | 487 | ||
488 | |||
489 | static int __init k2_sata_init(void) | 488 | static int __init k2_sata_init(void) |
490 | { | 489 | { |
491 | return pci_register_driver(&k2_sata_pci_driver); | 490 | return pci_register_driver(&k2_sata_pci_driver); |
492 | } | 491 | } |
493 | 492 | ||
494 | |||
495 | static void __exit k2_sata_exit(void) | 493 | static void __exit k2_sata_exit(void) |
496 | { | 494 | { |
497 | pci_unregister_driver(&k2_sata_pci_driver); | 495 | pci_unregister_driver(&k2_sata_pci_driver); |
498 | } | 496 | } |
499 | 497 | ||
500 | |||
501 | MODULE_AUTHOR("Benjamin Herrenschmidt"); | 498 | MODULE_AUTHOR("Benjamin Herrenschmidt"); |
502 | MODULE_DESCRIPTION("low-level driver for K2 SATA controller"); | 499 | MODULE_DESCRIPTION("low-level driver for K2 SATA controller"); |
503 | MODULE_LICENSE("GPL"); | 500 | MODULE_LICENSE("GPL"); |