diff options
author | Jingoo Han <jg1.han@samsung.com> | 2013-04-29 19:18:49 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2013-04-29 21:28:24 -0400 |
commit | 7daba88e9d4214fd2b70c000a1ad64b15699b527 (patch) | |
tree | cf3917aad510d51acc1f7df1baa8fe299af3770f /drivers/rtc/rtc-pxa.c | |
parent | 050bf1e444507f0d18c2b1c65dad26bcd5926496 (diff) |
rtc: rtc-pxa: 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-pxa.c')
-rw-r--r-- | drivers/rtc/rtc-pxa.c | 13 |
1 files changed, 1 insertions, 12 deletions
diff --git a/drivers/rtc/rtc-pxa.c b/drivers/rtc/rtc-pxa.c index 03c85ee719a7..22950bf6a652 100644 --- a/drivers/rtc/rtc-pxa.c +++ b/drivers/rtc/rtc-pxa.c | |||
@@ -452,18 +452,7 @@ static struct platform_driver pxa_rtc_driver = { | |||
452 | }, | 452 | }, |
453 | }; | 453 | }; |
454 | 454 | ||
455 | static int __init pxa_rtc_init(void) | 455 | module_platform_driver_probe(pxa_rtc_driver, pxa_rtc_probe); |
456 | { | ||
457 | return platform_driver_probe(&pxa_rtc_driver, pxa_rtc_probe); | ||
458 | } | ||
459 | |||
460 | static void __exit pxa_rtc_exit(void) | ||
461 | { | ||
462 | platform_driver_unregister(&pxa_rtc_driver); | ||
463 | } | ||
464 | |||
465 | module_init(pxa_rtc_init); | ||
466 | module_exit(pxa_rtc_exit); | ||
467 | 456 | ||
468 | MODULE_AUTHOR("Robert Jarzmik <robert.jarzmik@free.fr>"); | 457 | MODULE_AUTHOR("Robert Jarzmik <robert.jarzmik@free.fr>"); |
469 | MODULE_DESCRIPTION("PXA27x/PXA3xx Realtime Clock Driver (RTC)"); | 458 | MODULE_DESCRIPTION("PXA27x/PXA3xx Realtime Clock Driver (RTC)"); |