mirror of
https://github.com/torvalds/linux.git
synced 2024-11-12 07:01:57 +00:00
rtc: rtc-imxdi: 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>
This commit is contained in:
parent
a53f9a4eee
commit
615343420b
@ -513,18 +513,7 @@ static struct platform_driver dryice_rtc_driver = {
|
||||
.remove = __exit_p(dryice_rtc_remove),
|
||||
};
|
||||
|
||||
static int __init dryice_rtc_init(void)
|
||||
{
|
||||
return platform_driver_probe(&dryice_rtc_driver, dryice_rtc_probe);
|
||||
}
|
||||
|
||||
static void __exit dryice_rtc_exit(void)
|
||||
{
|
||||
platform_driver_unregister(&dryice_rtc_driver);
|
||||
}
|
||||
|
||||
module_init(dryice_rtc_init);
|
||||
module_exit(dryice_rtc_exit);
|
||||
module_platform_driver_probe(dryice_rtc_driver, dryice_rtc_probe);
|
||||
|
||||
MODULE_AUTHOR("Freescale Semiconductor, Inc.");
|
||||
MODULE_AUTHOR("Baruch Siach <baruch@tkos.co.il>");
|
||||
|
Loading…
Reference in New Issue
Block a user