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

drivers/rtc/rtc-vr41xx.c: use devm_*() functions

Use devm_*() functions to make cleanup paths simpler, and remove
unnecessary remove().
Signed-off-by: default avatarJingoo Han <jg1.han@samsung.com>
Cc: Yoichi Yuasa <yuasa@linux-mips.org>
Cc: Grygorii Strashko <grygorii.strashko@ti.com>
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent f53eeb85
...@@ -293,7 +293,7 @@ static int rtc_probe(struct platform_device *pdev) ...@@ -293,7 +293,7 @@ static int rtc_probe(struct platform_device *pdev)
if (!res) if (!res)
return -EBUSY; return -EBUSY;
rtc1_base = ioremap(res->start, resource_size(res)); rtc1_base = devm_ioremap(&pdev->dev, res->start, resource_size(res));
if (!rtc1_base) if (!rtc1_base)
return -EBUSY; return -EBUSY;
...@@ -303,13 +303,14 @@ static int rtc_probe(struct platform_device *pdev) ...@@ -303,13 +303,14 @@ static int rtc_probe(struct platform_device *pdev)
goto err_rtc1_iounmap; goto err_rtc1_iounmap;
} }
rtc2_base = ioremap(res->start, resource_size(res)); rtc2_base = devm_ioremap(&pdev->dev, res->start, resource_size(res));
if (!rtc2_base) { if (!rtc2_base) {
retval = -EBUSY; retval = -EBUSY;
goto err_rtc1_iounmap; goto err_rtc1_iounmap;
} }
rtc = rtc_device_register(rtc_name, &pdev->dev, &vr41xx_rtc_ops, THIS_MODULE); rtc = devm_rtc_device_register(&pdev->dev, rtc_name, &vr41xx_rtc_ops,
THIS_MODULE);
if (IS_ERR(rtc)) { if (IS_ERR(rtc)) {
retval = PTR_ERR(rtc); retval = PTR_ERR(rtc);
goto err_iounmap_all; goto err_iounmap_all;
...@@ -330,24 +331,24 @@ static int rtc_probe(struct platform_device *pdev) ...@@ -330,24 +331,24 @@ static int rtc_probe(struct platform_device *pdev)
aie_irq = platform_get_irq(pdev, 0); aie_irq = platform_get_irq(pdev, 0);
if (aie_irq <= 0) { if (aie_irq <= 0) {
retval = -EBUSY; retval = -EBUSY;
goto err_device_unregister; goto err_iounmap_all;
} }
retval = request_irq(aie_irq, elapsedtime_interrupt, 0, retval = devm_request_irq(&pdev->dev, aie_irq, elapsedtime_interrupt, 0,
"elapsed_time", pdev); "elapsed_time", pdev);
if (retval < 0) if (retval < 0)
goto err_device_unregister; goto err_iounmap_all;
pie_irq = platform_get_irq(pdev, 1); pie_irq = platform_get_irq(pdev, 1);
if (pie_irq <= 0) { if (pie_irq <= 0) {
retval = -EBUSY; retval = -EBUSY;
goto err_free_irq; goto err_iounmap_all;
} }
retval = request_irq(pie_irq, rtclong1_interrupt, 0, retval = devm_request_irq(&pdev->dev, pie_irq, rtclong1_interrupt, 0,
"rtclong1", pdev); "rtclong1", pdev);
if (retval < 0) if (retval < 0)
goto err_free_irq; goto err_iounmap_all;
platform_set_drvdata(pdev, rtc); platform_set_drvdata(pdev, rtc);
...@@ -358,47 +359,20 @@ static int rtc_probe(struct platform_device *pdev) ...@@ -358,47 +359,20 @@ static int rtc_probe(struct platform_device *pdev)
return 0; return 0;
err_free_irq:
free_irq(aie_irq, pdev);
err_device_unregister:
rtc_device_unregister(rtc);
err_iounmap_all: err_iounmap_all:
iounmap(rtc2_base);
rtc2_base = NULL; rtc2_base = NULL;
err_rtc1_iounmap: err_rtc1_iounmap:
iounmap(rtc1_base);
rtc1_base = NULL; rtc1_base = NULL;
return retval; return retval;
} }
static int rtc_remove(struct platform_device *pdev)
{
struct rtc_device *rtc;
rtc = platform_get_drvdata(pdev);
if (rtc)
rtc_device_unregister(rtc);
free_irq(aie_irq, pdev);
free_irq(pie_irq, pdev);
if (rtc1_base)
iounmap(rtc1_base);
if (rtc2_base)
iounmap(rtc2_base);
return 0;
}
/* work with hotplug and coldplug */ /* work with hotplug and coldplug */
MODULE_ALIAS("platform:RTC"); MODULE_ALIAS("platform:RTC");
static struct platform_driver rtc_platform_driver = { static struct platform_driver rtc_platform_driver = {
.probe = rtc_probe, .probe = rtc_probe,
.remove = rtc_remove,
.driver = { .driver = {
.name = rtc_name, .name = rtc_name,
.owner = THIS_MODULE, .owner = THIS_MODULE,
......
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