diff options
author | Takashi Iwai <tiwai@suse.de> | 2012-04-24 06:25:00 -0400 |
---|---|---|
committer | Takashi Iwai <tiwai@suse.de> | 2012-04-24 06:25:00 -0400 |
commit | e9f66d9b9ce03f74a52894cebedf12b67f65dd24 (patch) | |
tree | 6fc07ea37548ac3c9f808ee25c10fcfeb34236ea /sound/pci/rme9652/hdsp.c | |
parent | 68853fa30cdb6a9a92f7ab46c34aedb24b2f9d56 (diff) |
ALSA: pci: clean up using module_pci_driver()
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'sound/pci/rme9652/hdsp.c')
-rw-r--r-- | sound/pci/rme9652/hdsp.c | 15 |
1 files changed, 2 insertions, 13 deletions
diff --git a/sound/pci/rme9652/hdsp.c b/sound/pci/rme9652/hdsp.c index b68cdec03b9e..5cc31a400810 100644 --- a/sound/pci/rme9652/hdsp.c +++ b/sound/pci/rme9652/hdsp.c | |||
@@ -5635,22 +5635,11 @@ static void __devexit snd_hdsp_remove(struct pci_dev *pci) | |||
5635 | pci_set_drvdata(pci, NULL); | 5635 | pci_set_drvdata(pci, NULL); |
5636 | } | 5636 | } |
5637 | 5637 | ||
5638 | static struct pci_driver driver = { | 5638 | static struct pci_driver hdsp_driver = { |
5639 | .name = KBUILD_MODNAME, | 5639 | .name = KBUILD_MODNAME, |
5640 | .id_table = snd_hdsp_ids, | 5640 | .id_table = snd_hdsp_ids, |
5641 | .probe = snd_hdsp_probe, | 5641 | .probe = snd_hdsp_probe, |
5642 | .remove = __devexit_p(snd_hdsp_remove), | 5642 | .remove = __devexit_p(snd_hdsp_remove), |
5643 | }; | 5643 | }; |
5644 | 5644 | ||
5645 | static int __init alsa_card_hdsp_init(void) | 5645 | module_pci_driver(hdsp_driver); |
5646 | { | ||
5647 | return pci_register_driver(&driver); | ||
5648 | } | ||
5649 | |||
5650 | static void __exit alsa_card_hdsp_exit(void) | ||
5651 | { | ||
5652 | pci_unregister_driver(&driver); | ||
5653 | } | ||
5654 | |||
5655 | module_init(alsa_card_hdsp_init) | ||
5656 | module_exit(alsa_card_hdsp_exit) | ||