diff options
Diffstat (limited to 'sound/pci/rme9652/rme9652.c')
-rw-r--r-- | sound/pci/rme9652/rme9652.c | 15 |
1 files changed, 2 insertions, 13 deletions
diff --git a/sound/pci/rme9652/rme9652.c b/sound/pci/rme9652/rme9652.c index b737d1619cc7..a15fc100ab0c 100644 --- a/sound/pci/rme9652/rme9652.c +++ b/sound/pci/rme9652/rme9652.c | |||
@@ -2631,22 +2631,11 @@ static void __devexit snd_rme9652_remove(struct pci_dev *pci) | |||
2631 | pci_set_drvdata(pci, NULL); | 2631 | pci_set_drvdata(pci, NULL); |
2632 | } | 2632 | } |
2633 | 2633 | ||
2634 | static struct pci_driver driver = { | 2634 | static struct pci_driver rme9652_driver = { |
2635 | .name = KBUILD_MODNAME, | 2635 | .name = KBUILD_MODNAME, |
2636 | .id_table = snd_rme9652_ids, | 2636 | .id_table = snd_rme9652_ids, |
2637 | .probe = snd_rme9652_probe, | 2637 | .probe = snd_rme9652_probe, |
2638 | .remove = __devexit_p(snd_rme9652_remove), | 2638 | .remove = __devexit_p(snd_rme9652_remove), |
2639 | }; | 2639 | }; |
2640 | 2640 | ||
2641 | static int __init alsa_card_hammerfall_init(void) | 2641 | module_pci_driver(rme9652_driver); |
2642 | { | ||
2643 | return pci_register_driver(&driver); | ||
2644 | } | ||
2645 | |||
2646 | static void __exit alsa_card_hammerfall_exit(void) | ||
2647 | { | ||
2648 | pci_unregister_driver(&driver); | ||
2649 | } | ||
2650 | |||
2651 | module_init(alsa_card_hammerfall_init) | ||
2652 | module_exit(alsa_card_hammerfall_exit) | ||