diff options
author | Jingoo Han <jg1.han@samsung.com> | 2013-04-29 19:18:40 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2013-04-29 21:28:23 -0400 |
commit | 52c6ecbc80d7619dc52cdbddf7eaf0d923deb54f (patch) | |
tree | 0b55ba038ec9ddf39930b7ca9d8243a8573fd0c7 /drivers/rtc/rtc-efi.c | |
parent | 625f5225bd87e5badd9d4c1f9f0be4a55f2630d7 (diff) |
rtc: rtc-efi: 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-efi.c')
-rw-r--r-- | drivers/rtc/rtc-efi.c | 13 |
1 files changed, 1 insertions, 12 deletions
diff --git a/drivers/rtc/rtc-efi.c b/drivers/rtc/rtc-efi.c index 1a0c37c9152b..e70666272266 100644 --- a/drivers/rtc/rtc-efi.c +++ b/drivers/rtc/rtc-efi.c | |||
@@ -218,18 +218,7 @@ static struct platform_driver efi_rtc_driver = { | |||
218 | .remove = __exit_p(efi_rtc_remove), | 218 | .remove = __exit_p(efi_rtc_remove), |
219 | }; | 219 | }; |
220 | 220 | ||
221 | static int __init efi_rtc_init(void) | 221 | module_platform_driver_probe(efi_rtc_driver, efi_rtc_probe); |
222 | { | ||
223 | return platform_driver_probe(&efi_rtc_driver, efi_rtc_probe); | ||
224 | } | ||
225 | |||
226 | static void __exit efi_rtc_exit(void) | ||
227 | { | ||
228 | platform_driver_unregister(&efi_rtc_driver); | ||
229 | } | ||
230 | |||
231 | module_init(efi_rtc_init); | ||
232 | module_exit(efi_rtc_exit); | ||
233 | 222 | ||
234 | MODULE_AUTHOR("dann frazier <dannf@hp.com>"); | 223 | MODULE_AUTHOR("dann frazier <dannf@hp.com>"); |
235 | MODULE_LICENSE("GPL"); | 224 | MODULE_LICENSE("GPL"); |