]> git.ipfire.org Git - thirdparty/kernel/stable.git/commitdiff
ALSA: sb8: Utilize the module_isa_driver macro
authorWilliam Breathitt Gray <vilhelm.gray@gmail.com>
Tue, 31 May 2016 15:54:40 +0000 (11:54 -0400)
committerTakashi Iwai <tiwai@suse.de>
Wed, 1 Jun 2016 05:35:45 +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/sb/sb8.c

index b8e2391c33ff1de53f2a66620329c34f3f1604eb..ad42d2364199fd6a7200000b4f992ad9043c7f30 100644 (file)
@@ -251,15 +251,4 @@ static struct isa_driver snd_sb8_driver = {
        },
 };
 
-static int __init alsa_card_sb8_init(void)
-{
-       return isa_register_driver(&snd_sb8_driver, SNDRV_CARDS);
-}
-
-static void __exit alsa_card_sb8_exit(void)
-{
-       isa_unregister_driver(&snd_sb8_driver);
-}
-
-module_init(alsa_card_sb8_init)
-module_exit(alsa_card_sb8_exit)
+module_isa_driver(snd_sb8_driver, SNDRV_CARDS);