diff options
author | Jingoo Han <jg1.han@samsung.com> | 2013-04-29 19:18:38 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2013-04-29 21:28:22 -0400 |
commit | ce14a0261802e2758439c30dadac78f764c1fe16 (patch) | |
tree | ee883cd0a8af68c953b9a16a9965006975320517 /drivers/rtc/rtc-davinci.c | |
parent | 4fdf7a9f66686094c9cbcc18da3cde28860585c0 (diff) |
rtc: rtc-davinci: 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-davinci.c')
-rw-r--r-- | drivers/rtc/rtc-davinci.c | 12 |
1 files changed, 1 insertions, 11 deletions
diff --git a/drivers/rtc/rtc-davinci.c b/drivers/rtc/rtc-davinci.c index db877e02f2a2..1b0f932266eb 100644 --- a/drivers/rtc/rtc-davinci.c +++ b/drivers/rtc/rtc-davinci.c | |||
@@ -588,17 +588,7 @@ static struct platform_driver davinci_rtc_driver = { | |||
588 | }, | 588 | }, |
589 | }; | 589 | }; |
590 | 590 | ||
591 | static int __init rtc_init(void) | 591 | module_platform_driver_probe(davinci_rtc_driver, davinci_rtc_probe); |
592 | { | ||
593 | return platform_driver_probe(&davinci_rtc_driver, davinci_rtc_probe); | ||
594 | } | ||
595 | module_init(rtc_init); | ||
596 | |||
597 | static void __exit rtc_exit(void) | ||
598 | { | ||
599 | platform_driver_unregister(&davinci_rtc_driver); | ||
600 | } | ||
601 | module_exit(rtc_exit); | ||
602 | 592 | ||
603 | MODULE_AUTHOR("Miguel Aguilar <miguel.aguilar@ridgerun.com>"); | 593 | MODULE_AUTHOR("Miguel Aguilar <miguel.aguilar@ridgerun.com>"); |
604 | MODULE_DESCRIPTION("Texas Instruments DaVinci PRTC Driver"); | 594 | MODULE_DESCRIPTION("Texas Instruments DaVinci PRTC Driver"); |