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/cs46xx | |
parent | 68853fa30cdb6a9a92f7ab46c34aedb24b2f9d56 (diff) |
ALSA: pci: clean up using module_pci_driver()
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'sound/pci/cs46xx')
-rw-r--r-- | sound/pci/cs46xx/cs46xx.c | 15 |
1 files changed, 2 insertions, 13 deletions
diff --git a/sound/pci/cs46xx/cs46xx.c b/sound/pci/cs46xx/cs46xx.c index 819d79d0586d..6cc7404e0e8f 100644 --- a/sound/pci/cs46xx/cs46xx.c +++ b/sound/pci/cs46xx/cs46xx.c | |||
@@ -161,7 +161,7 @@ static void __devexit snd_card_cs46xx_remove(struct pci_dev *pci) | |||
161 | pci_set_drvdata(pci, NULL); | 161 | pci_set_drvdata(pci, NULL); |
162 | } | 162 | } |
163 | 163 | ||
164 | static struct pci_driver driver = { | 164 | static struct pci_driver cs46xx_driver = { |
165 | .name = KBUILD_MODNAME, | 165 | .name = KBUILD_MODNAME, |
166 | .id_table = snd_cs46xx_ids, | 166 | .id_table = snd_cs46xx_ids, |
167 | .probe = snd_card_cs46xx_probe, | 167 | .probe = snd_card_cs46xx_probe, |
@@ -172,15 +172,4 @@ static struct pci_driver driver = { | |||
172 | #endif | 172 | #endif |
173 | }; | 173 | }; |
174 | 174 | ||
175 | static int __init alsa_card_cs46xx_init(void) | 175 | module_pci_driver(cs46xx_driver); |
176 | { | ||
177 | return pci_register_driver(&driver); | ||
178 | } | ||
179 | |||
180 | static void __exit alsa_card_cs46xx_exit(void) | ||
181 | { | ||
182 | pci_unregister_driver(&driver); | ||
183 | } | ||
184 | |||
185 | module_init(alsa_card_cs46xx_init) | ||
186 | module_exit(alsa_card_cs46xx_exit) | ||