aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorWilliam Breathitt Gray <vilhelm.gray@gmail.com>2016-05-31 11:55:29 -0400
committerTakashi Iwai <tiwai@suse.de>2016-06-01 01:35:48 -0400
commitec5c08969928d3725b8e21a2ebb9e438392d099e (patch)
tree7fb612dfffb68160941c8785c665d2e6b966f295
parent042c576ca4932a298e73abd0872f4223d5411679 (diff)
ALSA: cs4231: 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/cs423x/cs4231.c13
1 files changed, 1 insertions, 12 deletions
diff --git a/sound/isa/cs423x/cs4231.c b/sound/isa/cs423x/cs4231.c
index 282cd75d2235..ef7448e9f813 100644
--- a/sound/isa/cs423x/cs4231.c
+++ b/sound/isa/cs423x/cs4231.c
@@ -186,15 +186,4 @@ static struct isa_driver snd_cs4231_driver = {
186 } 186 }
187}; 187};
188 188
189static int __init alsa_card_cs4231_init(void) 189module_isa_driver(snd_cs4231_driver, SNDRV_CARDS);
190{
191 return isa_register_driver(&snd_cs4231_driver, SNDRV_CARDS);
192}
193
194static void __exit alsa_card_cs4231_exit(void)
195{
196 isa_unregister_driver(&snd_cs4231_driver);
197}
198
199module_init(alsa_card_cs4231_init);
200module_exit(alsa_card_cs4231_exit);