提交 99c92ae4 编写于 作者: S Stephen Warren 提交者: Mark Brown

ASoC: Tegra PCM: Use module_platform_driver

This saves some boiler-plate code.
Signed-off-by: NStephen Warren <swarren@nvidia.com>
Signed-off-by: NMark Brown <broonie@opensource.wolfsonmicro.com>
上级 1db3c98e
......@@ -392,18 +392,7 @@ static struct platform_driver tegra_pcm_driver = {
.probe = tegra_pcm_platform_probe,
.remove = __devexit_p(tegra_pcm_platform_remove),
};
static int __init snd_tegra_pcm_init(void)
{
return platform_driver_register(&tegra_pcm_driver);
}
module_init(snd_tegra_pcm_init);
static void __exit snd_tegra_pcm_exit(void)
{
platform_driver_unregister(&tegra_pcm_driver);
}
module_exit(snd_tegra_pcm_exit);
module_platform_driver(tegra_pcm_driver);
MODULE_AUTHOR("Stephen Warren <swarren@nvidia.com>");
MODULE_DESCRIPTION("Tegra PCM ASoC driver");
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册