diff options
author | Jingoo Han <jg1.han@samsung.com> | 2013-04-29 19:18:37 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2013-04-29 21:28:22 -0400 |
commit | 4fdf7a9f66686094c9cbcc18da3cde28860585c0 (patch) | |
tree | 665e2cc19ae92a4166f9acb4d5426a6253c15642 | |
parent | aaa8345881ab6c6163438f21bf7ea12374a7af78 (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.c | 13 |
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 | ||
290 | static int __init coh901331_init(void) | 290 | module_platform_driver_probe(coh901331_driver, coh901331_probe); |
291 | { | ||
292 | return platform_driver_probe(&coh901331_driver, coh901331_probe); | ||
293 | } | ||
294 | |||
295 | static void __exit coh901331_exit(void) | ||
296 | { | ||
297 | platform_driver_unregister(&coh901331_driver); | ||
298 | } | ||
299 | |||
300 | module_init(coh901331_init); | ||
301 | module_exit(coh901331_exit); | ||
302 | 291 | ||
303 | MODULE_AUTHOR("Linus Walleij <linus.walleij@stericsson.com>"); | 292 | MODULE_AUTHOR("Linus Walleij <linus.walleij@stericsson.com>"); |
304 | MODULE_DESCRIPTION("ST-Ericsson AB COH 901 331 RTC Driver"); | 293 | MODULE_DESCRIPTION("ST-Ericsson AB COH 901 331 RTC Driver"); |