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/vx222/vx222.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/vx222/vx222.c')
-rw-r--r-- | sound/pci/vx222/vx222.c | 15 |
1 files changed, 2 insertions, 13 deletions
diff --git a/sound/pci/vx222/vx222.c b/sound/pci/vx222/vx222.c index 6a534bfe1274..1ea1f656a5dc 100644 --- a/sound/pci/vx222/vx222.c +++ b/sound/pci/vx222/vx222.c | |||
@@ -289,7 +289,7 @@ static int snd_vx222_resume(struct pci_dev *pci) | |||
289 | } | 289 | } |
290 | #endif | 290 | #endif |
291 | 291 | ||
292 | static struct pci_driver driver = { | 292 | static struct pci_driver vx222_driver = { |
293 | .name = KBUILD_MODNAME, | 293 | .name = KBUILD_MODNAME, |
294 | .id_table = snd_vx222_ids, | 294 | .id_table = snd_vx222_ids, |
295 | .probe = snd_vx222_probe, | 295 | .probe = snd_vx222_probe, |
@@ -300,15 +300,4 @@ static struct pci_driver driver = { | |||
300 | #endif | 300 | #endif |
301 | }; | 301 | }; |
302 | 302 | ||
303 | static int __init alsa_card_vx222_init(void) | 303 | module_pci_driver(vx222_driver); |
304 | { | ||
305 | return pci_register_driver(&driver); | ||
306 | } | ||
307 | |||
308 | static void __exit alsa_card_vx222_exit(void) | ||
309 | { | ||
310 | pci_unregister_driver(&driver); | ||
311 | } | ||
312 | |||
313 | module_init(alsa_card_vx222_init) | ||
314 | module_exit(alsa_card_vx222_exit) | ||