mirror of
https://github.com/torvalds/linux
synced 2024-11-05 18:23:50 +00:00
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>
This commit is contained in:
parent
042c576ca4
commit
ec5c089699
1 changed files with 1 additions and 12 deletions
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue