]> git.proxmox.com Git - mirror_ubuntu-focal-kernel.git/commitdiff
rtc: ls1x: switch to rtc_register_device
authorAlexandre Belloni <alexandre.belloni@bootlin.com>
Thu, 17 May 2018 20:53:25 +0000 (22:53 +0200)
committerAlexandre Belloni <alexandre.belloni@bootlin.com>
Thu, 17 May 2018 20:55:16 +0000 (22:55 +0200)
This allows for future improvement of the driver.

Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
drivers/rtc/rtc-ls1x.c

index de86f9fabc1101f3c9febbf9ae665b6e7458b027..609bd1d013f07f2d4255f0eec72238b951ab4fec 100644 (file)
@@ -173,15 +173,15 @@ static int ls1x_rtc_probe(struct platform_device *pdev)
        while (readl(SYS_COUNTER_CNTRL) & SYS_CNTRL_TTS)
                usleep_range(1000, 3000);
 
-       rtcdev = devm_rtc_device_register(&pdev->dev, "ls1x-rtc",
-                                       &ls1x_rtc_ops , THIS_MODULE);
-       if (IS_ERR(rtcdev)) {
-               ret = PTR_ERR(rtcdev);
-               goto err;
-       }
+       rtcdev = devm_rtc_allocate_device(&pdev->dev);
+       if (IS_ERR(rtcdev))
+               return PTR_ERR(rtcdev);
 
        platform_set_drvdata(pdev, rtcdev);
-       return 0;
+       rtcdev->ops = &ls1x_rtc_ops;
+
+       return rtc_register_device(rtcdev);
+
 err:
        return ret;
 }