ALSA: convert sound/* to use module_platform_driver()

This patch converts the drivers in sound/* to use the
module_platform_driver() macro which makes the code smaller and a bit
simpler.

Signed-off-by: Axel Lin <axel.lin@gmail.com>
Signed-off-by: Takashi Iwai <tiwai@suse.de>
此提交包含在:
Axel Lin
2011-11-27 16:36:04 +08:00
提交者 Takashi Iwai
父節點 51451b8d60
當前提交 a09452eeb7
共有 5 個檔案被更改,包括 5 行新增61 行删除

查看文件

@@ -441,15 +441,4 @@ static struct platform_driver driver = {
},
};
static int __init sh_dac_init(void)
{
return platform_driver_register(&driver);
}
static void __exit sh_dac_exit(void)
{
platform_driver_unregister(&driver);
}
module_init(sh_dac_init);
module_exit(sh_dac_exit);
module_platform_driver(driver);