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 01:35:47 -0400 |
commit | 042c576ca4932a298e73abd0872f4223d5411679 (patch) | |
tree | a569896162101983e87af912dacf52a64352b2f6 | |
parent | d2fd147c59d187dcf65e2acf6b7c9c34f2f760e1 (diff) |
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>
-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 2c89d95da674..787475084f46 100644 --- a/sound/isa/cmi8328.c +++ b/sound/isa/cmi8328.c | |||
@@ -469,15 +469,4 @@ static struct isa_driver snd_cmi8328_driver = { | |||
469 | }, | 469 | }, |
470 | }; | 470 | }; |
471 | 471 | ||
472 | static int __init alsa_card_cmi8328_init(void) | 472 | module_isa_driver(snd_cmi8328_driver, CMI8328_MAX); |
473 | { | ||
474 | return isa_register_driver(&snd_cmi8328_driver, CMI8328_MAX); | ||
475 | } | ||
476 | |||
477 | static void __exit alsa_card_cmi8328_exit(void) | ||
478 | { | ||
479 | isa_unregister_driver(&snd_cmi8328_driver); | ||
480 | } | ||
481 | |||
482 | module_init(alsa_card_cmi8328_init) | ||
483 | module_exit(alsa_card_cmi8328_exit) | ||