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 | |
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')
-rw-r--r-- | sound/pci/rme9652/hdsp.c | 15 | ||||
-rw-r--r-- | sound/pci/rme9652/hdspm.c | 16 | ||||
-rw-r--r-- | sound/pci/rme9652/rme9652.c | 15 |
3 files changed, 6 insertions, 40 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) | ||
diff --git a/sound/pci/rme9652/hdspm.c b/sound/pci/rme9652/hdspm.c index bc030a2088da..0a5027b94714 100644 --- a/sound/pci/rme9652/hdspm.c +++ b/sound/pci/rme9652/hdspm.c | |||
@@ -6918,23 +6918,11 @@ static void __devexit snd_hdspm_remove(struct pci_dev *pci) | |||
6918 | pci_set_drvdata(pci, NULL); | 6918 | pci_set_drvdata(pci, NULL); |
6919 | } | 6919 | } |
6920 | 6920 | ||
6921 | static struct pci_driver driver = { | 6921 | static struct pci_driver hdspm_driver = { |
6922 | .name = KBUILD_MODNAME, | 6922 | .name = KBUILD_MODNAME, |
6923 | .id_table = snd_hdspm_ids, | 6923 | .id_table = snd_hdspm_ids, |
6924 | .probe = snd_hdspm_probe, | 6924 | .probe = snd_hdspm_probe, |
6925 | .remove = __devexit_p(snd_hdspm_remove), | 6925 | .remove = __devexit_p(snd_hdspm_remove), |
6926 | }; | 6926 | }; |
6927 | 6927 | ||
6928 | 6928 | module_pci_driver(hdspm_driver); | |
6929 | static int __init alsa_card_hdspm_init(void) | ||
6930 | { | ||
6931 | return pci_register_driver(&driver); | ||
6932 | } | ||
6933 | |||
6934 | static void __exit alsa_card_hdspm_exit(void) | ||
6935 | { | ||
6936 | pci_unregister_driver(&driver); | ||
6937 | } | ||
6938 | |||
6939 | module_init(alsa_card_hdspm_init) | ||
6940 | module_exit(alsa_card_hdspm_exit) | ||
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) | ||