[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>
This commit is contained in:
@@ -442,16 +442,15 @@ err_out:
|
||||
return rc;
|
||||
}
|
||||
|
||||
|
||||
static const struct pci_device_id vsc_sata_pci_tbl[] = {
|
||||
{ PCI_VENDOR_ID_VITESSE, 0x7174,
|
||||
PCI_ANY_ID, PCI_ANY_ID, 0x10600, 0xFFFFFF, 0 },
|
||||
{ PCI_VENDOR_ID_INTEL, 0x3200,
|
||||
PCI_ANY_ID, PCI_ANY_ID, 0x10600, 0xFFFFFF, 0 },
|
||||
|
||||
{ } /* terminate list */
|
||||
};
|
||||
|
||||
|
||||
static struct pci_driver vsc_sata_pci_driver = {
|
||||
.name = DRV_NAME,
|
||||
.id_table = vsc_sata_pci_tbl,
|
||||
@@ -459,19 +458,16 @@ static struct pci_driver vsc_sata_pci_driver = {
|
||||
.remove = ata_pci_remove_one,
|
||||
};
|
||||
|
||||
|
||||
static int __init vsc_sata_init(void)
|
||||
{
|
||||
return pci_register_driver(&vsc_sata_pci_driver);
|
||||
}
|
||||
|
||||
|
||||
static void __exit vsc_sata_exit(void)
|
||||
{
|
||||
pci_unregister_driver(&vsc_sata_pci_driver);
|
||||
}
|
||||
|
||||
|
||||
MODULE_AUTHOR("Jeremy Higdon");
|
||||
MODULE_DESCRIPTION("low-level driver for Vitesse VSC7174 SATA controller");
|
||||
MODULE_LICENSE("GPL");
|
||||
|
||||
Reference in New Issue
Block a user