ALSA: cmi8328: Utilize the module_isa_driver macro
authorWilliam Breathitt Gray <vilhelm.gray@gmail.com>
Tue, 31 May 2016 15:55:12 +0000 (11:55 -0400)
committerTakashi Iwai <tiwai@suse.de>
Wed, 1 Jun 2016 05:35:47 +0000 (07:35 +0200)
This driver does not do anything special in module init/exit. This patch
eliminates the module init/exit boilerplate code by utilizing the
module_isa_driver macro.

Signed-off-by: William Breathitt Gray <vilhelm.gray@gmail.com>
Signed-off-by: Takashi Iwai <tiwai@suse.de>
sound/isa/cmi8328.c

index 2c89d95da674658f780ea475b0f2b3d55f59f0fc..787475084f4662cfd9fd03b5165d47c2f48477ea 100644 (file)
@@ -469,15 +469,4 @@ static struct isa_driver snd_cmi8328_driver = {
        },
 };
 
-static int __init alsa_card_cmi8328_init(void)
-{
-       return isa_register_driver(&snd_cmi8328_driver, CMI8328_MAX);
-}
-
-static void __exit alsa_card_cmi8328_exit(void)
-{
-       isa_unregister_driver(&snd_cmi8328_driver);
-}
-
-module_init(alsa_card_cmi8328_init)
-module_exit(alsa_card_cmi8328_exit)
+module_isa_driver(snd_cmi8328_driver, CMI8328_MAX);
This page took 0.025708 seconds and 5 git commands to generate.