aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/rtc/rtc-starfire.c
diff options
context:
space:
mode:
authorJingoo Han <jg1.han@samsung.com>2013-04-29 19:18:52 -0400
committerLinus Torvalds <torvalds@linux-foundation.org>2013-04-29 21:28:24 -0400
commit67bef2d518e2be73b10d8b878eff65d3165cc06a (patch)
tree0531d5b1617a8dec844a7045c3c12708f6789401 /drivers/rtc/rtc-starfire.c
parentdeed5a9dc94cf375d4cdd4330b34fcdfc0e41a74 (diff)
rtc: rtc-starfire: 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-starfire.c')
-rw-r--r--drivers/rtc/rtc-starfire.c13
1 files changed, 1 insertions, 12 deletions
diff --git a/drivers/rtc/rtc-starfire.c b/drivers/rtc/rtc-starfire.c
index 5be98bfd7ed3..db7d0765aabd 100644
--- a/drivers/rtc/rtc-starfire.c
+++ b/drivers/rtc/rtc-starfire.c
@@ -66,15 +66,4 @@ static struct platform_driver starfire_rtc_driver = {
66 .remove = __exit_p(starfire_rtc_remove), 66 .remove = __exit_p(starfire_rtc_remove),
67}; 67};
68 68
69static int __init starfire_rtc_init(void) 69module_platform_driver_probe(starfire_rtc_driver, starfire_rtc_probe);
70{
71 return platform_driver_probe(&starfire_rtc_driver, starfire_rtc_probe);
72}
73
74static void __exit starfire_rtc_exit(void)
75{
76 platform_driver_unregister(&starfire_rtc_driver);
77}
78
79module_init(starfire_rtc_init);
80module_exit(starfire_rtc_exit);