diff mbox

[7/8] drivers/rtc/rtc-max8925.c: Use devm_* APIs

Message ID 1364883895-20865-7-git-send-email-sachin.kamat@linaro.org
State Accepted
Headers show

Commit Message

Sachin Kamat April 2, 2013, 6:24 a.m. UTC
devm_* functions are device managed and make cleanup
code simpler.

Signed-off-by: Sachin Kamat <sachin.kamat@linaro.org>
Cc: Haojian Zhuang <haojian.zhuang@linaro.org>
---
 drivers/rtc/rtc-max8925.c |   26 +++++++++-----------------
 1 file changed, 9 insertions(+), 17 deletions(-)

Comments

Haojian Zhuang April 2, 2013, 7 a.m. UTC | #1
On 2 April 2013 14:24, Sachin Kamat <sachin.kamat@linaro.org> wrote:
> devm_* functions are device managed and make cleanup
> code simpler.
>
> Signed-off-by: Sachin Kamat <sachin.kamat@linaro.org>
> Cc: Haojian Zhuang <haojian.zhuang@linaro.org>
> ---
>  drivers/rtc/rtc-max8925.c |   26 +++++++++-----------------
>  1 file changed, 9 insertions(+), 17 deletions(-)
>
> diff --git a/drivers/rtc/rtc-max8925.c b/drivers/rtc/rtc-max8925.c
> index a0c8265..7c90f4e 100644
> --- a/drivers/rtc/rtc-max8925.c
> +++ b/drivers/rtc/rtc-max8925.c
> @@ -253,7 +253,8 @@ static int max8925_rtc_probe(struct platform_device *pdev)
>         struct max8925_rtc_info *info;
>         int ret;
>
> -       info = kzalloc(sizeof(struct max8925_rtc_info), GFP_KERNEL);
> +       info = devm_kzalloc(&pdev->dev, sizeof(struct max8925_rtc_info),
> +                           GFP_KERNEL);
>         if (!info)
>                 return -ENOMEM;
>         info->chip = chip;
> @@ -261,12 +262,13 @@ static int max8925_rtc_probe(struct platform_device *pdev)
>         info->dev = &pdev->dev;
>         info->irq = platform_get_irq(pdev, 0);
>
> -       ret = request_threaded_irq(info->irq, NULL, rtc_update_handler,
> -                                  IRQF_ONESHOT, "rtc-alarm0", info);
> +       ret = devm_request_threaded_irq(&pdev->dev, info->irq, NULL,
> +                                       rtc_update_handler, IRQF_ONESHOT,
> +                                       "rtc-alarm0", info);
>         if (ret < 0) {
>                 dev_err(chip->dev, "Failed to request IRQ: #%d: %d\n",
>                         info->irq, ret);
> -               goto out_irq;
> +               goto err;
>         }
>
>         dev_set_drvdata(&pdev->dev, info);
> @@ -275,32 +277,22 @@ static int max8925_rtc_probe(struct platform_device *pdev)
>
>         device_init_wakeup(&pdev->dev, 1);
>
> -       info->rtc_dev = rtc_device_register("max8925-rtc", &pdev->dev,
> +       info->rtc_dev = devm_rtc_device_register(&pdev->dev, "max8925-rtc",
>                                         &max8925_rtc_ops, THIS_MODULE);
>         ret = PTR_ERR(info->rtc_dev);
>         if (IS_ERR(info->rtc_dev)) {
>                 dev_err(&pdev->dev, "Failed to register RTC device: %d\n", ret);
> -               goto out_rtc;
> +               goto err;
>         }
>
>         return 0;
> -out_rtc:
> +err:
>         platform_set_drvdata(pdev, NULL);
> -       free_irq(info->irq, info);
> -out_irq:
> -       kfree(info);
>         return ret;
>  }
>
>  static int max8925_rtc_remove(struct platform_device *pdev)
>  {
> -       struct max8925_rtc_info *info = platform_get_drvdata(pdev);
> -
> -       if (info) {
> -               free_irq(info->irq, info);
> -               rtc_device_unregister(info->rtc_dev);
> -               kfree(info);
> -       }
>         return 0;
>  }
>
> --
> 1.7.9.5
>

Acked-by: Haojian Zhuang <haojian.zhuang@linaro.org>
diff mbox

Patch

diff --git a/drivers/rtc/rtc-max8925.c b/drivers/rtc/rtc-max8925.c
index a0c8265..7c90f4e 100644
--- a/drivers/rtc/rtc-max8925.c
+++ b/drivers/rtc/rtc-max8925.c
@@ -253,7 +253,8 @@  static int max8925_rtc_probe(struct platform_device *pdev)
 	struct max8925_rtc_info *info;
 	int ret;
 
-	info = kzalloc(sizeof(struct max8925_rtc_info), GFP_KERNEL);
+	info = devm_kzalloc(&pdev->dev, sizeof(struct max8925_rtc_info),
+			    GFP_KERNEL);
 	if (!info)
 		return -ENOMEM;
 	info->chip = chip;
@@ -261,12 +262,13 @@  static int max8925_rtc_probe(struct platform_device *pdev)
 	info->dev = &pdev->dev;
 	info->irq = platform_get_irq(pdev, 0);
 
-	ret = request_threaded_irq(info->irq, NULL, rtc_update_handler,
-				   IRQF_ONESHOT, "rtc-alarm0", info);
+	ret = devm_request_threaded_irq(&pdev->dev, info->irq, NULL,
+					rtc_update_handler, IRQF_ONESHOT,
+					"rtc-alarm0", info);
 	if (ret < 0) {
 		dev_err(chip->dev, "Failed to request IRQ: #%d: %d\n",
 			info->irq, ret);
-		goto out_irq;
+		goto err;
 	}
 
 	dev_set_drvdata(&pdev->dev, info);
@@ -275,32 +277,22 @@  static int max8925_rtc_probe(struct platform_device *pdev)
 
 	device_init_wakeup(&pdev->dev, 1);
 
-	info->rtc_dev = rtc_device_register("max8925-rtc", &pdev->dev,
+	info->rtc_dev = devm_rtc_device_register(&pdev->dev, "max8925-rtc",
 					&max8925_rtc_ops, THIS_MODULE);
 	ret = PTR_ERR(info->rtc_dev);
 	if (IS_ERR(info->rtc_dev)) {
 		dev_err(&pdev->dev, "Failed to register RTC device: %d\n", ret);
-		goto out_rtc;
+		goto err;
 	}
 
 	return 0;
-out_rtc:
+err:
 	platform_set_drvdata(pdev, NULL);
-	free_irq(info->irq, info);
-out_irq:
-	kfree(info);
 	return ret;
 }
 
 static int max8925_rtc_remove(struct platform_device *pdev)
 {
-	struct max8925_rtc_info *info = platform_get_drvdata(pdev);
-
-	if (info) {
-		free_irq(info->irq, info);
-		rtc_device_unregister(info->rtc_dev);
-		kfree(info);
-	}
 	return 0;
 }