Commit be8b6d51 authored by Fabio Estevam's avatar Fabio Estevam Committed by Linus Torvalds

rtc: rtc-mxc: convert to module_platform_driver

Converting to module_platform_driver can make the code smaller and cleaner.
Signed-off-by: default avatarFabio Estevam <fabio.estevam@freescale.com>
Cc: Sascha Hauer <s.hauer@pengutronix.de>
Cc: Alessandro Zummo <a.zummo@towertech.it>
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent 0f3cde53
...@@ -343,7 +343,7 @@ static struct rtc_class_ops mxc_rtc_ops = { ...@@ -343,7 +343,7 @@ static struct rtc_class_ops mxc_rtc_ops = {
.alarm_irq_enable = mxc_rtc_alarm_irq_enable, .alarm_irq_enable = mxc_rtc_alarm_irq_enable,
}; };
static int __init mxc_rtc_probe(struct platform_device *pdev) static int __devinit mxc_rtc_probe(struct platform_device *pdev)
{ {
struct resource *res; struct resource *res;
struct rtc_device *rtc; struct rtc_device *rtc;
...@@ -433,7 +433,7 @@ static int __init mxc_rtc_probe(struct platform_device *pdev) ...@@ -433,7 +433,7 @@ static int __init mxc_rtc_probe(struct platform_device *pdev)
return ret; return ret;
} }
static int __exit mxc_rtc_remove(struct platform_device *pdev) static int __devexit mxc_rtc_remove(struct platform_device *pdev)
{ {
struct rtc_plat_data *pdata = platform_get_drvdata(pdev); struct rtc_plat_data *pdata = platform_get_drvdata(pdev);
...@@ -480,21 +480,11 @@ static struct platform_driver mxc_rtc_driver = { ...@@ -480,21 +480,11 @@ static struct platform_driver mxc_rtc_driver = {
#endif #endif
.owner = THIS_MODULE, .owner = THIS_MODULE,
}, },
.remove = __exit_p(mxc_rtc_remove), .probe = mxc_rtc_probe,
.remove = __devexit_p(mxc_rtc_remove),
}; };
static int __init mxc_rtc_init(void) module_platform_driver(mxc_rtc_driver)
{
return platform_driver_probe(&mxc_rtc_driver, mxc_rtc_probe);
}
static void __exit mxc_rtc_exit(void)
{
platform_driver_unregister(&mxc_rtc_driver);
}
module_init(mxc_rtc_init);
module_exit(mxc_rtc_exit);
MODULE_AUTHOR("Daniel Mack <daniel@caiaq.de>"); MODULE_AUTHOR("Daniel Mack <daniel@caiaq.de>");
MODULE_DESCRIPTION("RTC driver for Freescale MXC"); MODULE_DESCRIPTION("RTC driver for Freescale MXC");
......
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