diff options
author | William Breathitt Gray <vilhelm.gray@gmail.com> | 2016-05-31 11:55:29 -0400 |
---|---|---|
committer | Takashi Iwai <tiwai@suse.de> | 2016-06-01 07:35:48 +0200 |
commit | ec5c08969928d3725b8e21a2ebb9e438392d099e (patch) | |
tree | 7fb612dfffb68160941c8785c665d2e6b966f295 /sound/isa | |
parent | 042c576ca4932a298e73abd0872f4223d5411679 (diff) | |
download | linux-ec5c08969928d3725b8e21a2ebb9e438392d099e.tar.gz linux-ec5c08969928d3725b8e21a2ebb9e438392d099e.tar.bz2 linux-ec5c08969928d3725b8e21a2ebb9e438392d099e.zip |
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>
Diffstat (limited to 'sound/isa')
-rw-r--r-- | sound/isa/cs423x/cs4231.c | 13 |
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 = { } }; -static int __init alsa_card_cs4231_init(void) -{ - return isa_register_driver(&snd_cs4231_driver, SNDRV_CARDS); -} - -static void __exit alsa_card_cs4231_exit(void) -{ - isa_unregister_driver(&snd_cs4231_driver); -} - -module_init(alsa_card_cs4231_init); -module_exit(alsa_card_cs4231_exit); +module_isa_driver(snd_cs4231_driver, SNDRV_CARDS); |