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/es1968.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/es1968.c')
-rw-r--r-- | sound/pci/es1968.c | 15 |
1 files changed, 2 insertions, 13 deletions
diff --git a/sound/pci/es1968.c b/sound/pci/es1968.c index a8faae1c85e4..67f47d891959 100644 --- a/sound/pci/es1968.c +++ b/sound/pci/es1968.c | |||
@@ -2898,7 +2898,7 @@ static void __devexit snd_es1968_remove(struct pci_dev *pci) | |||
2898 | pci_set_drvdata(pci, NULL); | 2898 | pci_set_drvdata(pci, NULL); |
2899 | } | 2899 | } |
2900 | 2900 | ||
2901 | static struct pci_driver driver = { | 2901 | static struct pci_driver es1968_driver = { |
2902 | .name = KBUILD_MODNAME, | 2902 | .name = KBUILD_MODNAME, |
2903 | .id_table = snd_es1968_ids, | 2903 | .id_table = snd_es1968_ids, |
2904 | .probe = snd_es1968_probe, | 2904 | .probe = snd_es1968_probe, |
@@ -2909,15 +2909,4 @@ static struct pci_driver driver = { | |||
2909 | #endif | 2909 | #endif |
2910 | }; | 2910 | }; |
2911 | 2911 | ||
2912 | static int __init alsa_card_es1968_init(void) | 2912 | module_pci_driver(es1968_driver); |
2913 | { | ||
2914 | return pci_register_driver(&driver); | ||
2915 | } | ||
2916 | |||
2917 | static void __exit alsa_card_es1968_exit(void) | ||
2918 | { | ||
2919 | pci_unregister_driver(&driver); | ||
2920 | } | ||
2921 | |||
2922 | module_init(alsa_card_es1968_init) | ||
2923 | module_exit(alsa_card_es1968_exit) | ||