diff options
author | Jingoo Han <jg1.han@samsung.com> | 2013-04-29 19:18:48 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2013-04-29 21:28:24 -0400 |
commit | 050bf1e444507f0d18c2b1c65dad26bcd5926496 (patch) | |
tree | fd856d57159517cf7285be7c4ea36efc5ac1f66d /drivers/rtc/rtc-ps3.c | |
parent | 0de4c7c150feb942747bbf594340e86d344c94aa (diff) |
rtc: rtc-ps3: 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: Geert Uytterhoeven <geert@linux-m68k.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-ps3.c')
-rw-r--r-- | drivers/rtc/rtc-ps3.c | 13 |
1 files changed, 1 insertions, 12 deletions
diff --git a/drivers/rtc/rtc-ps3.c b/drivers/rtc/rtc-ps3.c index 968133ce1ee8..846722de0ce4 100644 --- a/drivers/rtc/rtc-ps3.c +++ b/drivers/rtc/rtc-ps3.c | |||
@@ -85,18 +85,7 @@ static struct platform_driver ps3_rtc_driver = { | |||
85 | .remove = __exit_p(ps3_rtc_remove), | 85 | .remove = __exit_p(ps3_rtc_remove), |
86 | }; | 86 | }; |
87 | 87 | ||
88 | static int __init ps3_rtc_init(void) | 88 | module_platform_driver_probe(ps3_rtc_driver, ps3_rtc_probe); |
89 | { | ||
90 | return platform_driver_probe(&ps3_rtc_driver, ps3_rtc_probe); | ||
91 | } | ||
92 | |||
93 | static void __exit ps3_rtc_fini(void) | ||
94 | { | ||
95 | platform_driver_unregister(&ps3_rtc_driver); | ||
96 | } | ||
97 | |||
98 | module_init(ps3_rtc_init); | ||
99 | module_exit(ps3_rtc_fini); | ||
100 | 89 | ||
101 | MODULE_AUTHOR("Sony Corporation"); | 90 | MODULE_AUTHOR("Sony Corporation"); |
102 | MODULE_LICENSE("GPL"); | 91 | MODULE_LICENSE("GPL"); |