提交 5c86ac69 编写于 作者: B Bo Shen 提交者: Mark Brown

ASoC: atmel-ssc: use module_platform_driver macro

This patch removes some code duplication by using module_platform_driver
Signed-off-by: NBo Shen <voice.shen@atmel.com>
Signed-off-by: NMark Brown <broonie@opensource.wolfsonmicro.com>
上级 2e4de7b3
...@@ -68,7 +68,7 @@ void ssc_free(struct ssc_device *ssc) ...@@ -68,7 +68,7 @@ void ssc_free(struct ssc_device *ssc)
} }
EXPORT_SYMBOL(ssc_free); EXPORT_SYMBOL(ssc_free);
static int __init ssc_probe(struct platform_device *pdev) static int ssc_probe(struct platform_device *pdev)
{ {
struct resource *regs; struct resource *regs;
struct ssc_device *ssc; struct ssc_device *ssc;
...@@ -135,24 +135,14 @@ static int __devexit ssc_remove(struct platform_device *pdev) ...@@ -135,24 +135,14 @@ static int __devexit ssc_remove(struct platform_device *pdev)
} }
static struct platform_driver ssc_driver = { static struct platform_driver ssc_driver = {
.remove = __devexit_p(ssc_remove),
.driver = { .driver = {
.name = "ssc", .name = "ssc",
.owner = THIS_MODULE, .owner = THIS_MODULE,
}, },
.probe = ssc_probe,
.remove = __devexit_p(ssc_remove),
}; };
module_platform_driver(ssc_driver);
static int __init ssc_init(void)
{
return platform_driver_probe(&ssc_driver, ssc_probe);
}
module_init(ssc_init);
static void __exit ssc_exit(void)
{
platform_driver_unregister(&ssc_driver);
}
module_exit(ssc_exit);
MODULE_AUTHOR("Hans-Christian Egtvedt <hcegtvedt@atmel.com>"); MODULE_AUTHOR("Hans-Christian Egtvedt <hcegtvedt@atmel.com>");
MODULE_DESCRIPTION("SSC driver for Atmel AVR32 and AT91"); MODULE_DESCRIPTION("SSC driver for Atmel AVR32 and AT91");
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册