diff options
author | Jingoo Han <jg1.han@samsung.com> | 2013-04-29 19:18:36 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2013-04-29 21:28:22 -0400 |
commit | ac36960f42ee2788dd0a2988779e45952a8327a9 (patch) | |
tree | 10e2b546542961e38059c3e2b0365dc43cda1503 | |
parent | e835ebc816047f85d1fd834a2a1d5305684a43f2 (diff) |
rtc: rtc-at91rm9200: 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>
-rw-r--r-- | drivers/rtc/rtc-at91rm9200.c | 13 |
1 files changed, 1 insertions, 12 deletions
diff --git a/drivers/rtc/rtc-at91rm9200.c b/drivers/rtc/rtc-at91rm9200.c index 434ebc3a99dc..f63c8fee73eb 100644 --- a/drivers/rtc/rtc-at91rm9200.c +++ b/drivers/rtc/rtc-at91rm9200.c | |||
@@ -390,18 +390,7 @@ static struct platform_driver at91_rtc_driver = { | |||
390 | }, | 390 | }, |
391 | }; | 391 | }; |
392 | 392 | ||
393 | static int __init at91_rtc_init(void) | 393 | module_platform_driver_probe(at91_rtc_driver, at91_rtc_probe); |
394 | { | ||
395 | return platform_driver_probe(&at91_rtc_driver, at91_rtc_probe); | ||
396 | } | ||
397 | |||
398 | static void __exit at91_rtc_exit(void) | ||
399 | { | ||
400 | platform_driver_unregister(&at91_rtc_driver); | ||
401 | } | ||
402 | |||
403 | module_init(at91_rtc_init); | ||
404 | module_exit(at91_rtc_exit); | ||
405 | 394 | ||
406 | MODULE_AUTHOR("Rick Bronson"); | 395 | MODULE_AUTHOR("Rick Bronson"); |
407 | MODULE_DESCRIPTION("RTC driver for Atmel AT91RM9200"); | 396 | MODULE_DESCRIPTION("RTC driver for Atmel AT91RM9200"); |