Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit bb974b8f authored by William Breathitt Gray's avatar William Breathitt Gray Committed by Takashi Iwai
Browse files

ALSA: sb8: 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: default avatarWilliam Breathitt Gray <vilhelm.gray@gmail.com>
Signed-off-by: default avatarTakashi Iwai <tiwai@suse.de>
parent 0358ccc8
Loading
Loading
Loading
Loading
+1 −12
Original line number Original line Diff line number Diff line
@@ -251,15 +251,4 @@ static struct isa_driver snd_sb8_driver = {
	},
	},
};
};


static int __init alsa_card_sb8_init(void)
module_isa_driver(snd_sb8_driver, SNDRV_CARDS);
{
	return isa_register_driver(&snd_sb8_driver, SNDRV_CARDS);
}

static void __exit alsa_card_sb8_exit(void)
{
	isa_unregister_driver(&snd_sb8_driver);
}

module_init(alsa_card_sb8_init)
module_exit(alsa_card_sb8_exit)