diff options
Diffstat (limited to 'drivers/ide/pci/hpt34x.c')
-rw-r--r-- | drivers/ide/pci/hpt34x.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/ide/pci/hpt34x.c b/drivers/ide/pci/hpt34x.c index 644de29f8fe4..fb1a3aa57f07 100644 --- a/drivers/ide/pci/hpt34x.c +++ b/drivers/ide/pci/hpt34x.c | |||
@@ -166,7 +166,7 @@ static const struct pci_device_id hpt34x_pci_tbl[] = { | |||
166 | }; | 166 | }; |
167 | MODULE_DEVICE_TABLE(pci, hpt34x_pci_tbl); | 167 | MODULE_DEVICE_TABLE(pci, hpt34x_pci_tbl); |
168 | 168 | ||
169 | static struct pci_driver driver = { | 169 | static struct pci_driver hpt34x_pci_driver = { |
170 | .name = "HPT34x_IDE", | 170 | .name = "HPT34x_IDE", |
171 | .id_table = hpt34x_pci_tbl, | 171 | .id_table = hpt34x_pci_tbl, |
172 | .probe = hpt34x_init_one, | 172 | .probe = hpt34x_init_one, |
@@ -177,12 +177,12 @@ static struct pci_driver driver = { | |||
177 | 177 | ||
178 | static int __init hpt34x_ide_init(void) | 178 | static int __init hpt34x_ide_init(void) |
179 | { | 179 | { |
180 | return ide_pci_register_driver(&driver); | 180 | return ide_pci_register_driver(&hpt34x_pci_driver); |
181 | } | 181 | } |
182 | 182 | ||
183 | static void __exit hpt34x_ide_exit(void) | 183 | static void __exit hpt34x_ide_exit(void) |
184 | { | 184 | { |
185 | pci_unregister_driver(&driver); | 185 | pci_unregister_driver(&hpt34x_pci_driver); |
186 | } | 186 | } |
187 | 187 | ||
188 | module_init(hpt34x_ide_init); | 188 | module_init(hpt34x_ide_init); |