]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
rtc: rtc-mv: use module_platform_driver_probe()
authorJingoo Han <jg1.han@samsung.com>
Tue, 26 Mar 2013 23:25:18 +0000 (10:25 +1100)
committerStephen Rothwell <sfr@canb.auug.org.au>
Thu, 4 Apr 2013 06:12:36 +0000 (17:12 +1100)
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>
drivers/rtc/rtc-mv.c

index d8e875e9a16530c384c433232a76c05db005eb3d..f378e1773a3e817d1a35096de14510b188b3353b 100644 (file)
@@ -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");