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/via82cxxx.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/via82cxxx.c')
-rw-r--r-- | drivers/ide/pci/via82cxxx.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/ide/pci/via82cxxx.c b/drivers/ide/pci/via82cxxx.c index acacdaab69c2..2a812d3207e9 100644 --- a/drivers/ide/pci/via82cxxx.c +++ b/drivers/ide/pci/via82cxxx.c | |||
@@ -487,7 +487,7 @@ static const struct pci_device_id via_pci_tbl[] = { | |||
487 | }; | 487 | }; |
488 | MODULE_DEVICE_TABLE(pci, via_pci_tbl); | 488 | MODULE_DEVICE_TABLE(pci, via_pci_tbl); |
489 | 489 | ||
490 | static struct pci_driver driver = { | 490 | static struct pci_driver via_pci_driver = { |
491 | .name = "VIA_IDE", | 491 | .name = "VIA_IDE", |
492 | .id_table = via_pci_tbl, | 492 | .id_table = via_pci_tbl, |
493 | .probe = via_init_one, | 493 | .probe = via_init_one, |
@@ -498,12 +498,12 @@ static struct pci_driver driver = { | |||
498 | 498 | ||
499 | static int __init via_ide_init(void) | 499 | static int __init via_ide_init(void) |
500 | { | 500 | { |
501 | return ide_pci_register_driver(&driver); | 501 | return ide_pci_register_driver(&via_pci_driver); |
502 | } | 502 | } |
503 | 503 | ||
504 | static void __exit via_ide_exit(void) | 504 | static void __exit via_ide_exit(void) |
505 | { | 505 | { |
506 | pci_unregister_driver(&driver); | 506 | pci_unregister_driver(&via_pci_driver); |
507 | } | 507 | } |
508 | 508 | ||
509 | module_init(via_ide_init); | 509 | module_init(via_ide_init); |