diff options
author | Jingoo Han <jg1.han@samsung.com> | 2013-04-29 16:18:52 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2013-04-29 18:28:24 -0700 |
commit | 67bef2d518e2be73b10d8b878eff65d3165cc06a (patch) | |
tree | 0531d5b1617a8dec844a7045c3c12708f6789401 /drivers/rtc/rtc-starfire.c | |
parent | deed5a9dc94cf375d4cdd4330b34fcdfc0e41a74 (diff) | |
download | linux-stable-67bef2d518e2be73b10d8b878eff65d3165cc06a.tar.gz linux-stable-67bef2d518e2be73b10d8b878eff65d3165cc06a.tar.bz2 linux-stable-67bef2d518e2be73b10d8b878eff65d3165cc06a.zip |
rtc: rtc-starfire: 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-starfire.c')
-rw-r--r-- | drivers/rtc/rtc-starfire.c | 13 |
1 files changed, 1 insertions, 12 deletions
diff --git a/drivers/rtc/rtc-starfire.c b/drivers/rtc/rtc-starfire.c index 5be98bfd7ed3..db7d0765aabd 100644 --- a/drivers/rtc/rtc-starfire.c +++ b/drivers/rtc/rtc-starfire.c @@ -66,15 +66,4 @@ static struct platform_driver starfire_rtc_driver = { .remove = __exit_p(starfire_rtc_remove), }; -static int __init starfire_rtc_init(void) -{ - return platform_driver_probe(&starfire_rtc_driver, starfire_rtc_probe); -} - -static void __exit starfire_rtc_exit(void) -{ - platform_driver_unregister(&starfire_rtc_driver); -} - -module_init(starfire_rtc_init); -module_exit(starfire_rtc_exit); +module_platform_driver_probe(starfire_rtc_driver, starfire_rtc_probe); |