diff options
Diffstat (limited to 'drivers/ide/pci/hpt366.c')
-rw-r--r-- | drivers/ide/pci/hpt366.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/ide/pci/hpt366.c b/drivers/ide/pci/hpt366.c index 5d47916dab99..91f51e7b376f 100644 --- a/drivers/ide/pci/hpt366.c +++ b/drivers/ide/pci/hpt366.c | |||
@@ -1619,7 +1619,7 @@ static const struct pci_device_id hpt366_pci_tbl[] __devinitconst = { | |||
1619 | }; | 1619 | }; |
1620 | MODULE_DEVICE_TABLE(pci, hpt366_pci_tbl); | 1620 | MODULE_DEVICE_TABLE(pci, hpt366_pci_tbl); |
1621 | 1621 | ||
1622 | static struct pci_driver driver = { | 1622 | static struct pci_driver hpt366_pci_driver = { |
1623 | .name = "HPT366_IDE", | 1623 | .name = "HPT366_IDE", |
1624 | .id_table = hpt366_pci_tbl, | 1624 | .id_table = hpt366_pci_tbl, |
1625 | .probe = hpt366_init_one, | 1625 | .probe = hpt366_init_one, |
@@ -1630,12 +1630,12 @@ static struct pci_driver driver = { | |||
1630 | 1630 | ||
1631 | static int __init hpt366_ide_init(void) | 1631 | static int __init hpt366_ide_init(void) |
1632 | { | 1632 | { |
1633 | return ide_pci_register_driver(&driver); | 1633 | return ide_pci_register_driver(&hpt366_pci_driver); |
1634 | } | 1634 | } |
1635 | 1635 | ||
1636 | static void __exit hpt366_ide_exit(void) | 1636 | static void __exit hpt366_ide_exit(void) |
1637 | { | 1637 | { |
1638 | pci_unregister_driver(&driver); | 1638 | pci_unregister_driver(&hpt366_pci_driver); |
1639 | } | 1639 | } |
1640 | 1640 | ||
1641 | module_init(hpt366_ide_init); | 1641 | module_init(hpt366_ide_init); |