mirror of
https://github.com/torvalds/linux.git
synced 2024-11-12 07:01:57 +00:00
rtc: rtc-mc13xxx: 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
615343420b
commit
09fb7ad15a
@ -420,17 +420,7 @@ static struct platform_driver mc13xxx_rtc_driver = {
|
||||
},
|
||||
};
|
||||
|
||||
static int __init mc13xxx_rtc_init(void)
|
||||
{
|
||||
return platform_driver_probe(&mc13xxx_rtc_driver, &mc13xxx_rtc_probe);
|
||||
}
|
||||
module_init(mc13xxx_rtc_init);
|
||||
|
||||
static void __exit mc13xxx_rtc_exit(void)
|
||||
{
|
||||
platform_driver_unregister(&mc13xxx_rtc_driver);
|
||||
}
|
||||
module_exit(mc13xxx_rtc_exit);
|
||||
module_platform_driver_probe(mc13xxx_rtc_driver, &mc13xxx_rtc_probe);
|
||||
|
||||
MODULE_AUTHOR("Sascha Hauer <s.hauer@pengutronix.de>");
|
||||
MODULE_DESCRIPTION("RTC driver for Freescale MC13XXX PMIC");
|
||||
|
Loading…
Reference in New Issue
Block a user