diff options
author | William Breathitt Gray <vilhelm.gray@gmail.com> | 2016-05-31 11:55:12 -0400 |
---|---|---|
committer | Takashi Iwai <tiwai@suse.de> | 2016-06-01 07:35:47 +0200 |
commit | 042c576ca4932a298e73abd0872f4223d5411679 (patch) | |
tree | a569896162101983e87af912dacf52a64352b2f6 /sound/isa | |
parent | d2fd147c59d187dcf65e2acf6b7c9c34f2f760e1 (diff) | |
download | op-kernel-dev-042c576ca4932a298e73abd0872f4223d5411679.zip op-kernel-dev-042c576ca4932a298e73abd0872f4223d5411679.tar.gz |
ALSA: cmi8328: 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/cmi8328.c | 13 |
1 files changed, 1 insertions, 12 deletions
diff --git a/sound/isa/cmi8328.c b/sound/isa/cmi8328.c index 2c89d95..7874750 100644 --- a/sound/isa/cmi8328.c +++ b/sound/isa/cmi8328.c @@ -469,15 +469,4 @@ static struct isa_driver snd_cmi8328_driver = { }, }; -static int __init alsa_card_cmi8328_init(void) -{ - return isa_register_driver(&snd_cmi8328_driver, CMI8328_MAX); -} - -static void __exit alsa_card_cmi8328_exit(void) -{ - isa_unregister_driver(&snd_cmi8328_driver); -} - -module_init(alsa_card_cmi8328_init) -module_exit(alsa_card_cmi8328_exit) +module_isa_driver(snd_cmi8328_driver, CMI8328_MAX); |