diff options
author | Jingoo Han <jg1.han@samsung.com> | 2013-04-29 19:18:34 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2013-04-29 21:28:22 -0400 |
commit | fb34a8120446593d24dcd29e0b2c7bdac8e8ac6a (patch) | |
tree | 04ff52be799ac622521dff6ae49ab9027cc5234e /drivers/rtc/rtc-ab3100.c | |
parent | 6636a9944b9d3b6c4a0a27d5be5abc49ceca3381 (diff) |
rtc: rtc-ab3100: 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>
Diffstat (limited to 'drivers/rtc/rtc-ab3100.c')
-rw-r--r-- | drivers/rtc/rtc-ab3100.c | 14 |
1 files changed, 1 insertions, 13 deletions
diff --git a/drivers/rtc/rtc-ab3100.c b/drivers/rtc/rtc-ab3100.c index 261a07e0fb24..c2f12d370009 100644 --- a/drivers/rtc/rtc-ab3100.c +++ b/drivers/rtc/rtc-ab3100.c | |||
@@ -257,19 +257,7 @@ static struct platform_driver ab3100_rtc_driver = { | |||
257 | .remove = __exit_p(ab3100_rtc_remove), | 257 | .remove = __exit_p(ab3100_rtc_remove), |
258 | }; | 258 | }; |
259 | 259 | ||
260 | static int __init ab3100_rtc_init(void) | 260 | module_platform_driver_probe(ab3100_rtc_driver, ab3100_rtc_probe); |
261 | { | ||
262 | return platform_driver_probe(&ab3100_rtc_driver, | ||
263 | ab3100_rtc_probe); | ||
264 | } | ||
265 | |||
266 | static void __exit ab3100_rtc_exit(void) | ||
267 | { | ||
268 | platform_driver_unregister(&ab3100_rtc_driver); | ||
269 | } | ||
270 | |||
271 | module_init(ab3100_rtc_init); | ||
272 | module_exit(ab3100_rtc_exit); | ||
273 | 261 | ||
274 | MODULE_AUTHOR("Linus Walleij <linus.walleij@stericsson.com>"); | 262 | MODULE_AUTHOR("Linus Walleij <linus.walleij@stericsson.com>"); |
275 | MODULE_DESCRIPTION("AB3100 RTC Driver"); | 263 | MODULE_DESCRIPTION("AB3100 RTC Driver"); |