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/it821x.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/it821x.c')
-rw-r--r-- | drivers/ide/pci/it821x.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/ide/pci/it821x.c b/drivers/ide/pci/it821x.c index 1aada445a9c8..ae7e7420f198 100644 --- a/drivers/ide/pci/it821x.c +++ b/drivers/ide/pci/it821x.c | |||
@@ -676,7 +676,7 @@ static const struct pci_device_id it821x_pci_tbl[] = { | |||
676 | 676 | ||
677 | MODULE_DEVICE_TABLE(pci, it821x_pci_tbl); | 677 | MODULE_DEVICE_TABLE(pci, it821x_pci_tbl); |
678 | 678 | ||
679 | static struct pci_driver driver = { | 679 | static struct pci_driver it821x_pci_driver = { |
680 | .name = "ITE821x IDE", | 680 | .name = "ITE821x IDE", |
681 | .id_table = it821x_pci_tbl, | 681 | .id_table = it821x_pci_tbl, |
682 | .probe = it821x_init_one, | 682 | .probe = it821x_init_one, |
@@ -687,12 +687,12 @@ static struct pci_driver driver = { | |||
687 | 687 | ||
688 | static int __init it821x_ide_init(void) | 688 | static int __init it821x_ide_init(void) |
689 | { | 689 | { |
690 | return ide_pci_register_driver(&driver); | 690 | return ide_pci_register_driver(&it821x_pci_driver); |
691 | } | 691 | } |
692 | 692 | ||
693 | static void __exit it821x_ide_exit(void) | 693 | static void __exit it821x_ide_exit(void) |
694 | { | 694 | { |
695 | pci_unregister_driver(&driver); | 695 | pci_unregister_driver(&it821x_pci_driver); |
696 | } | 696 | } |
697 | 697 | ||
698 | module_init(it821x_ide_init); | 698 | module_init(it821x_ide_init); |