diff options
author | William Breathitt Gray <vilhelm.gray@gmail.com> | 2016-05-31 11:55:01 -0400 |
---|---|---|
committer | Takashi Iwai <tiwai@suse.de> | 2016-06-01 01:35:47 -0400 |
commit | d2fd147c59d187dcf65e2acf6b7c9c34f2f760e1 (patch) | |
tree | 78e9bc4088a5e2a3ac76ebe9ae5c65f1323a38c7 | |
parent | fc733cf98c2afa50730928ccdb302e412610e5df (diff) |
ALSA: ad1848: 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>
-rw-r--r-- | sound/isa/ad1848/ad1848.c | 13 |
1 files changed, 1 insertions, 12 deletions
diff --git a/sound/isa/ad1848/ad1848.c b/sound/isa/ad1848/ad1848.c index f159da4ec890..a302d1f8d14f 100644 --- a/sound/isa/ad1848/ad1848.c +++ b/sound/isa/ad1848/ad1848.c | |||
@@ -170,15 +170,4 @@ static struct isa_driver snd_ad1848_driver = { | |||
170 | } | 170 | } |
171 | }; | 171 | }; |
172 | 172 | ||
173 | static int __init alsa_card_ad1848_init(void) | 173 | module_isa_driver(snd_ad1848_driver, SNDRV_CARDS); |
174 | { | ||
175 | return isa_register_driver(&snd_ad1848_driver, SNDRV_CARDS); | ||
176 | } | ||
177 | |||
178 | static void __exit alsa_card_ad1848_exit(void) | ||
179 | { | ||
180 | isa_unregister_driver(&snd_ad1848_driver); | ||
181 | } | ||
182 | |||
183 | module_init(alsa_card_ad1848_init); | ||
184 | module_exit(alsa_card_ad1848_exit); | ||