summaryrefslogtreecommitdiffstats
path: root/drivers/rtc/rtc-mv.c
diff options
context:
space:
mode:
authorJingoo Han2013-04-30 01:18:44 +0200
committerLinus Torvalds2013-04-30 03:28:23 +0200
commit1963f7cd19a4c9ddbb5e4d43859c30109b0ba65c (patch)
treebe7dd9d94eec1c557574a29ee820345c7c9f14d3 /drivers/rtc/rtc-mv.c
parentrtc: rtc-msm6242: use module_platform_driver_probe() (diff)
downloadkernel-qcow2-linux-1963f7cd19a4c9ddbb5e4d43859c30109b0ba65c.tar.gz
kernel-qcow2-linux-1963f7cd19a4c9ddbb5e4d43859c30109b0ba65c.tar.xz
kernel-qcow2-linux-1963f7cd19a4c9ddbb5e4d43859c30109b0ba65c.zip
rtc: rtc-mv: use module_platform_driver_probe()
Use module_platform_driver_probe() macro which makes the code smaller and simpler. Signed-off-by: Jingoo Han <jg1.han@samsung.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'drivers/rtc/rtc-mv.c')
-rw-r--r--drivers/rtc/rtc-mv.c13
1 files changed, 1 insertions, 12 deletions
diff --git a/drivers/rtc/rtc-mv.c b/drivers/rtc/rtc-mv.c
index d8e875e9a165..f378e1773a3e 100644
--- a/drivers/rtc/rtc-mv.c
+++ b/drivers/rtc/rtc-mv.c
@@ -331,18 +331,7 @@ static struct platform_driver mv_rtc_driver = {
},
};
-static __init int mv_init(void)
-{
- 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_platform_driver_probe(mv_rtc_driver, mv_rtc_probe);
MODULE_AUTHOR("Saeed Bishara <saeed@marvell.com>");
MODULE_DESCRIPTION("Marvell RTC driver");