diff options
Diffstat (limited to 'drivers/ata/pata_cmd64x.c')
| -rw-r--r-- | drivers/ata/pata_cmd64x.c | 17 |
1 files changed, 8 insertions, 9 deletions
diff --git a/drivers/ata/pata_cmd64x.c b/drivers/ata/pata_cmd64x.c index e92b0ef43ec5..b9bbd1d454bf 100644 --- a/drivers/ata/pata_cmd64x.c +++ b/drivers/ata/pata_cmd64x.c | |||
| @@ -468,16 +468,17 @@ static int cmd64x_init_one(struct pci_dev *pdev, const struct pci_device_id *id) | |||
| 468 | return ata_pci_init_one(pdev, port_info, 2); | 468 | return ata_pci_init_one(pdev, port_info, 2); |
| 469 | } | 469 | } |
| 470 | 470 | ||
| 471 | static struct pci_device_id cmd64x[] = { | 471 | static const struct pci_device_id cmd64x[] = { |
| 472 | { PCI_VENDOR_ID_CMD, PCI_DEVICE_ID_CMD_643, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0}, | 472 | { PCI_VDEVICE(CMD, PCI_DEVICE_ID_CMD_643), 0 }, |
| 473 | { PCI_VENDOR_ID_CMD, PCI_DEVICE_ID_CMD_646, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 1}, | 473 | { PCI_VDEVICE(CMD, PCI_DEVICE_ID_CMD_646), 1 }, |
| 474 | { PCI_VENDOR_ID_CMD, PCI_DEVICE_ID_CMD_648, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 4}, | 474 | { PCI_VDEVICE(CMD, PCI_DEVICE_ID_CMD_648), 4 }, |
| 475 | { PCI_VENDOR_ID_CMD, PCI_DEVICE_ID_CMD_649, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 5}, | 475 | { PCI_VDEVICE(CMD, PCI_DEVICE_ID_CMD_649), 5 }, |
| 476 | { 0, }, | 476 | |
| 477 | { }, | ||
| 477 | }; | 478 | }; |
| 478 | 479 | ||
| 479 | static struct pci_driver cmd64x_pci_driver = { | 480 | static struct pci_driver cmd64x_pci_driver = { |
| 480 | .name = DRV_NAME, | 481 | .name = DRV_NAME, |
| 481 | .id_table = cmd64x, | 482 | .id_table = cmd64x, |
| 482 | .probe = cmd64x_init_one, | 483 | .probe = cmd64x_init_one, |
| 483 | .remove = ata_pci_remove_one | 484 | .remove = ata_pci_remove_one |
| @@ -488,13 +489,11 @@ static int __init cmd64x_init(void) | |||
| 488 | return pci_register_driver(&cmd64x_pci_driver); | 489 | return pci_register_driver(&cmd64x_pci_driver); |
| 489 | } | 490 | } |
| 490 | 491 | ||
| 491 | |||
| 492 | static void __exit cmd64x_exit(void) | 492 | static void __exit cmd64x_exit(void) |
| 493 | { | 493 | { |
| 494 | pci_unregister_driver(&cmd64x_pci_driver); | 494 | pci_unregister_driver(&cmd64x_pci_driver); |
| 495 | } | 495 | } |
| 496 | 496 | ||
| 497 | |||
| 498 | MODULE_AUTHOR("Alan Cox"); | 497 | MODULE_AUTHOR("Alan Cox"); |
| 499 | MODULE_DESCRIPTION("low-level driver for CMD64x series PATA controllers"); | 498 | MODULE_DESCRIPTION("low-level driver for CMD64x series PATA controllers"); |
| 500 | MODULE_LICENSE("GPL"); | 499 | MODULE_LICENSE("GPL"); |
