diff options
Diffstat (limited to 'sound/pci/cs5535audio/cs5535audio.c')
-rw-r--r-- | sound/pci/cs5535audio/cs5535audio.c | 15 |
1 files changed, 2 insertions, 13 deletions
diff --git a/sound/pci/cs5535audio/cs5535audio.c b/sound/pci/cs5535audio/cs5535audio.c index a2fb2173e980..2c9697cf0a1a 100644 --- a/sound/pci/cs5535audio/cs5535audio.c +++ b/sound/pci/cs5535audio/cs5535audio.c | |||
@@ -394,7 +394,7 @@ static void __devexit snd_cs5535audio_remove(struct pci_dev *pci) | |||
394 | pci_set_drvdata(pci, NULL); | 394 | pci_set_drvdata(pci, NULL); |
395 | } | 395 | } |
396 | 396 | ||
397 | static struct pci_driver driver = { | 397 | static struct pci_driver cs5535audio_driver = { |
398 | .name = KBUILD_MODNAME, | 398 | .name = KBUILD_MODNAME, |
399 | .id_table = snd_cs5535audio_ids, | 399 | .id_table = snd_cs5535audio_ids, |
400 | .probe = snd_cs5535audio_probe, | 400 | .probe = snd_cs5535audio_probe, |
@@ -405,18 +405,7 @@ static struct pci_driver driver = { | |||
405 | #endif | 405 | #endif |
406 | }; | 406 | }; |
407 | 407 | ||
408 | static int __init alsa_card_cs5535audio_init(void) | 408 | module_pci_driver(cs5535audio_driver); |
409 | { | ||
410 | return pci_register_driver(&driver); | ||
411 | } | ||
412 | |||
413 | static void __exit alsa_card_cs5535audio_exit(void) | ||
414 | { | ||
415 | pci_unregister_driver(&driver); | ||
416 | } | ||
417 | |||
418 | module_init(alsa_card_cs5535audio_init) | ||
419 | module_exit(alsa_card_cs5535audio_exit) | ||
420 | 409 | ||
421 | MODULE_AUTHOR("Jaya Kumar"); | 410 | MODULE_AUTHOR("Jaya Kumar"); |
422 | MODULE_LICENSE("GPL"); | 411 | MODULE_LICENSE("GPL"); |