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_sis.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_sis.c')
-rw-r--r-- | drivers/ata/pata_sis.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/ata/pata_sis.c b/drivers/ata/pata_sis.c index 17791e2785f9..b9ffafb4198c 100644 --- a/drivers/ata/pata_sis.c +++ b/drivers/ata/pata_sis.c | |||
@@ -988,8 +988,9 @@ static int sis_init_one (struct pci_dev *pdev, const struct pci_device_id *ent) | |||
988 | } | 988 | } |
989 | 989 | ||
990 | static const struct pci_device_id sis_pci_tbl[] = { | 990 | static const struct pci_device_id sis_pci_tbl[] = { |
991 | { PCI_DEVICE(PCI_VENDOR_ID_SI, 0x5513), }, /* SiS 5513 */ | 991 | { PCI_VDEVICE(SI, 0x5513), }, /* SiS 5513 */ |
992 | { PCI_DEVICE(PCI_VENDOR_ID_SI, 0x5518), }, /* SiS 5518 */ | 992 | { PCI_VDEVICE(SI, 0x5518), }, /* SiS 5518 */ |
993 | |||
993 | { } | 994 | { } |
994 | }; | 995 | }; |
995 | 996 | ||
@@ -1010,7 +1011,6 @@ static void __exit sis_exit(void) | |||
1010 | pci_unregister_driver(&sis_pci_driver); | 1011 | pci_unregister_driver(&sis_pci_driver); |
1011 | } | 1012 | } |
1012 | 1013 | ||
1013 | |||
1014 | module_init(sis_init); | 1014 | module_init(sis_init); |
1015 | module_exit(sis_exit); | 1015 | module_exit(sis_exit); |
1016 | 1016 | ||