diff options
author | William Breathitt Gray <vilhelm.gray@gmail.com> | 2016-05-31 11:54:50 -0400 |
---|---|---|
committer | Takashi Iwai <tiwai@suse.de> | 2016-06-01 07:35:46 +0200 |
commit | fc733cf98c2afa50730928ccdb302e412610e5df (patch) | |
tree | 1f4d0951ef912a4f7ecebb905d84270abf952ad0 /sound/isa | |
parent | bb974b8f7b16441d49e188774d74ba987c58be53 (diff) | |
download | linux-fc733cf98c2afa50730928ccdb302e412610e5df.tar.bz2 |
ALSA: jazz16: Utilize the module_isa_driver macro
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>
Diffstat (limited to 'sound/isa')
-rw-r--r-- | sound/isa/sb/jazz16.c | 13 |
1 files changed, 1 insertions, 12 deletions
diff --git a/sound/isa/sb/jazz16.c b/sound/isa/sb/jazz16.c index 6b4884d052a5..4d909971eedb 100644 --- a/sound/isa/sb/jazz16.c +++ b/sound/isa/sb/jazz16.c @@ -387,15 +387,4 @@ static struct isa_driver snd_jazz16_driver = { }, }; -static int __init alsa_card_jazz16_init(void) -{ - return isa_register_driver(&snd_jazz16_driver, SNDRV_CARDS); -} - -static void __exit alsa_card_jazz16_exit(void) -{ - isa_unregister_driver(&snd_jazz16_driver); -} - -module_init(alsa_card_jazz16_init) -module_exit(alsa_card_jazz16_exit) +module_isa_driver(snd_jazz16_driver, SNDRV_CARDS); |