diff options
author | Bartlomiej Zolnierkiewicz <bzolnier@gmail.com> | 2008-10-13 15:39:41 -0400 |
---|---|---|
committer | Bartlomiej Zolnierkiewicz <bzolnier@gmail.com> | 2008-10-13 15:39:41 -0400 |
commit | a9ab09e26055a76295548ca36ec00de2f4367d32 (patch) | |
tree | 51f1c279e74e3d5b3ec920b33fae579339dd67ad /drivers/ide/pci/hpt366.c | |
parent | d6ff9f64e68d23feab44efa07cc6aee01f3ef32b (diff) |
ide: use unique names for struct pci_driver instances
Noticed-by: Russell King <rmk+lkml@arm.linux.org.uk>
Signed-off-by: Bartlomiej Zolnierkiewicz <bzolnier@gmail.com>
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); |