diff options
author | Jingoo Han <jg1.han@samsung.com> | 2013-04-29 19:18:53 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2013-04-29 21:28:24 -0400 |
commit | 0e2c481d4b3789f54b0f8c7ea6669992836f9cf0 (patch) | |
tree | 3ada1fd4d583ea1ae15a6cfefddcbde51d7f7ee7 /drivers/rtc/rtc-tegra.c | |
parent | 61ce8256cb35eb84b6c5d167a023e1235e3bdcfc (diff) |
rtc: rtc-tegra: 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-tegra.c')
-rw-r--r-- | drivers/rtc/rtc-tegra.c | 12 |
1 files changed, 1 insertions, 11 deletions
diff --git a/drivers/rtc/rtc-tegra.c b/drivers/rtc/rtc-tegra.c index 0020bab3f154..9447d65fe2b1 100644 --- a/drivers/rtc/rtc-tegra.c +++ b/drivers/rtc/rtc-tegra.c | |||
@@ -452,17 +452,7 @@ static struct platform_driver tegra_rtc_driver = { | |||
452 | #endif | 452 | #endif |
453 | }; | 453 | }; |
454 | 454 | ||
455 | static int __init tegra_rtc_init(void) | 455 | module_platform_driver_probe(tegra_rtc_driver, tegra_rtc_probe); |
456 | { | ||
457 | return platform_driver_probe(&tegra_rtc_driver, tegra_rtc_probe); | ||
458 | } | ||
459 | module_init(tegra_rtc_init); | ||
460 | |||
461 | static void __exit tegra_rtc_exit(void) | ||
462 | { | ||
463 | platform_driver_unregister(&tegra_rtc_driver); | ||
464 | } | ||
465 | module_exit(tegra_rtc_exit); | ||
466 | 456 | ||
467 | MODULE_AUTHOR("Jon Mayo <jmayo@nvidia.com>"); | 457 | MODULE_AUTHOR("Jon Mayo <jmayo@nvidia.com>"); |
468 | MODULE_DESCRIPTION("driver for Tegra internal RTC"); | 458 | MODULE_DESCRIPTION("driver for Tegra internal RTC"); |