Commit 1963f7cd authored by Jingoo Han's avatar Jingoo Han Committed by Linus Torvalds

rtc: rtc-mv: use module_platform_driver_probe()

Use module_platform_driver_probe() macro which makes the code smaller and
simpler.
Signed-off-by: default avatarJingoo Han <jg1.han@samsung.com>
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent 19cccfb5
...@@ -331,18 +331,7 @@ static struct platform_driver mv_rtc_driver = { ...@@ -331,18 +331,7 @@ static struct platform_driver mv_rtc_driver = {
}, },
}; };
static __init int mv_init(void) module_platform_driver_probe(mv_rtc_driver, mv_rtc_probe);
{
return platform_driver_probe(&mv_rtc_driver, mv_rtc_probe);
}
static __exit void mv_exit(void)
{
platform_driver_unregister(&mv_rtc_driver);
}
module_init(mv_init);
module_exit(mv_exit);
MODULE_AUTHOR("Saeed Bishara <saeed@marvell.com>"); MODULE_AUTHOR("Saeed Bishara <saeed@marvell.com>");
MODULE_DESCRIPTION("Marvell RTC driver"); MODULE_DESCRIPTION("Marvell RTC driver");
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment