Commit e835ebc8 authored by Jingoo Han's avatar Jingoo Han Committed by Linus Torvalds

rtc: rtc-at32ap700x: use module_platform_driver_probe()

Use module_platform_driver_probe() macro which makes the code smaller and
simpler.
Signed-off-by: default avatarJingoo Han <jg1.han@samsung.com>
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent fb34a812
...@@ -302,17 +302,7 @@ static struct platform_driver at32_rtc_driver = { ...@@ -302,17 +302,7 @@ static struct platform_driver at32_rtc_driver = {
}, },
}; };
static int __init at32_rtc_init(void) module_platform_driver_probe(at32_rtc_driver, at32_rtc_probe);
{
return platform_driver_probe(&at32_rtc_driver, at32_rtc_probe);
}
module_init(at32_rtc_init);
static void __exit at32_rtc_exit(void)
{
platform_driver_unregister(&at32_rtc_driver);
}
module_exit(at32_rtc_exit);
MODULE_AUTHOR("Hans-Christian Egtvedt <hcegtvedt@atmel.com>"); MODULE_AUTHOR("Hans-Christian Egtvedt <hcegtvedt@atmel.com>");
MODULE_DESCRIPTION("Real time clock for AVR32 AT32AP700x"); MODULE_DESCRIPTION("Real time clock for AVR32 AT32AP700x");
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment