diff options
Diffstat (limited to 'sound/pci/au88x0/au88x0.c')
-rw-r--r-- | sound/pci/au88x0/au88x0.c | 17 |
1 files changed, 2 insertions, 15 deletions
diff --git a/sound/pci/au88x0/au88x0.c b/sound/pci/au88x0/au88x0.c index f13ad536b2d5..ffc376f9f4e4 100644 --- a/sound/pci/au88x0/au88x0.c +++ b/sound/pci/au88x0/au88x0.c | |||
@@ -375,24 +375,11 @@ static void __devexit snd_vortex_remove(struct pci_dev *pci) | |||
375 | } | 375 | } |
376 | 376 | ||
377 | // pci_driver definition | 377 | // pci_driver definition |
378 | static struct pci_driver driver = { | 378 | static struct pci_driver vortex_driver = { |
379 | .name = KBUILD_MODNAME, | 379 | .name = KBUILD_MODNAME, |
380 | .id_table = snd_vortex_ids, | 380 | .id_table = snd_vortex_ids, |
381 | .probe = snd_vortex_probe, | 381 | .probe = snd_vortex_probe, |
382 | .remove = __devexit_p(snd_vortex_remove), | 382 | .remove = __devexit_p(snd_vortex_remove), |
383 | }; | 383 | }; |
384 | 384 | ||
385 | // initialization of the module | 385 | module_pci_driver(vortex_driver); |
386 | static int __init alsa_card_vortex_init(void) | ||
387 | { | ||
388 | return pci_register_driver(&driver); | ||
389 | } | ||
390 | |||
391 | // clean up the module | ||
392 | static void __exit alsa_card_vortex_exit(void) | ||
393 | { | ||
394 | pci_unregister_driver(&driver); | ||
395 | } | ||
396 | |||
397 | module_init(alsa_card_vortex_init) | ||
398 | module_exit(alsa_card_vortex_exit) | ||