Skip to content

Commit

Permalink
ALSA: gusclassic: Utilize the module_isa_driver macro
Browse files Browse the repository at this point in the history
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 <[email protected]>
Signed-off-by: Takashi Iwai <[email protected]>
  • Loading branch information
vilhelmgray authored and tiwai committed Jun 1, 2016
1 parent bfc7e0f commit a04236e
Showing 1 changed file with 1 addition and 12 deletions.
13 changes: 1 addition & 12 deletions sound/isa/gus/gusclassic.c
Original file line number Diff line number Diff line change
Expand Up @@ -229,15 +229,4 @@ static struct isa_driver snd_gusclassic_driver = {
}
};

static int __init alsa_card_gusclassic_init(void)
{
return isa_register_driver(&snd_gusclassic_driver, SNDRV_CARDS);
}

static void __exit alsa_card_gusclassic_exit(void)
{
isa_unregister_driver(&snd_gusclassic_driver);
}

module_init(alsa_card_gusclassic_init);
module_exit(alsa_card_gusclassic_exit);
module_isa_driver(snd_gusclassic_driver, SNDRV_CARDS);

0 comments on commit a04236e

Please sign in to comment.