]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
rtc: rtc-ab3100: use devm_rtc_device_register()
authorJingoo Han <jg1.han@samsung.com>
Wed, 20 Mar 2013 04:08:13 +0000 (15:08 +1100)
committerStephen Rothwell <sfr@canb.auug.org.au>
Thu, 21 Mar 2013 05:34:18 +0000 (16:34 +1100)
devm_rtc_device_register() is device managed and makes cleanup paths
simpler.

Signed-off-by: Jingoo Han <jg1.han@samsung.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
drivers/rtc/rtc-ab3100.c

index c2f12d3700091f1e11492a337e0f39c27846ec6d..47a4f2c4d30e8b766d2fca6ca50592005c886cb5 100644 (file)
@@ -229,8 +229,8 @@ static int __init ab3100_rtc_probe(struct platform_device *pdev)
                /* Ignore any error on this write */
        }
 
-       rtc = rtc_device_register("ab3100-rtc", &pdev->dev, &ab3100_rtc_ops,
-                                 THIS_MODULE);
+       rtc = devm_rtc_device_register(&pdev->dev, "ab3100-rtc",
+                                       &ab3100_rtc_ops, THIS_MODULE);
        if (IS_ERR(rtc)) {
                err = PTR_ERR(rtc);
                return err;
@@ -242,9 +242,6 @@ static int __init ab3100_rtc_probe(struct platform_device *pdev)
 
 static int __exit ab3100_rtc_remove(struct platform_device *pdev)
 {
-       struct rtc_device *rtc = platform_get_drvdata(pdev);
-
-       rtc_device_unregister(rtc);
        platform_set_drvdata(pdev, NULL);
        return 0;
 }