aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJingoo Han <jg1.han@samsung.com>2013-04-29 19:18:37 -0400
committerLinus Torvalds <torvalds@linux-foundation.org>2013-04-29 21:28:22 -0400
commit4fdf7a9f66686094c9cbcc18da3cde28860585c0 (patch)
tree665e2cc19ae92a4166f9acb4d5426a6253c15642
parentaaa8345881ab6c6163438f21bf7ea12374a7af78 (diff)
rtc: rtc-coh901331: 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> Acked-by: Linus Walleij <linus.walleij@linaro.org> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
-rw-r--r--drivers/rtc/rtc-coh901331.c13
1 files changed, 1 insertions, 12 deletions
diff --git a/drivers/rtc/rtc-coh901331.c b/drivers/rtc/rtc-coh901331.c
index 2d28ec1aa1cd..f53fcd6a0172 100644
--- a/drivers/rtc/rtc-coh901331.c
+++ b/drivers/rtc/rtc-coh901331.c
@@ -287,18 +287,7 @@ static struct platform_driver coh901331_driver = {
287 .shutdown = coh901331_shutdown, 287 .shutdown = coh901331_shutdown,
288}; 288};
289 289
290static int __init coh901331_init(void) 290module_platform_driver_probe(coh901331_driver, coh901331_probe);
291{
292 return platform_driver_probe(&coh901331_driver, coh901331_probe);
293}
294
295static void __exit coh901331_exit(void)
296{
297 platform_driver_unregister(&coh901331_driver);
298}
299
300module_init(coh901331_init);
301module_exit(coh901331_exit);
302 291
303MODULE_AUTHOR("Linus Walleij <linus.walleij@stericsson.com>"); 292MODULE_AUTHOR("Linus Walleij <linus.walleij@stericsson.com>");
304MODULE_DESCRIPTION("ST-Ericsson AB COH 901 331 RTC Driver"); 293MODULE_DESCRIPTION("ST-Ericsson AB COH 901 331 RTC Driver");