rtc: m48t59: switch to rtc_register_device
authorAlexandre Belloni <alexandre.belloni@bootlin.com>
Mon, 12 Feb 2018 22:47:39 +0000 (23:47 +0100)
committerAlexandre Belloni <alexandre.belloni@bootlin.com>
Thu, 1 Mar 2018 09:49:26 +0000 (10:49 +0100)
This allows for future improvement of the driver.

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

index d99a705..e248e56 100644 (file)
@@ -480,11 +480,16 @@ static int m48t59_rtc_probe(struct platform_device *pdev)
        spin_lock_init(&m48t59->lock);
        platform_set_drvdata(pdev, m48t59);
 
-       m48t59->rtc = devm_rtc_device_register(&pdev->dev, name, ops,
-                                               THIS_MODULE);
+       m48t59->rtc = devm_rtc_allocate_device(&pdev->dev);
        if (IS_ERR(m48t59->rtc))
                return PTR_ERR(m48t59->rtc);
 
+       m48t59->rtc->ops = ops;
+
+       ret = rtc_register_device(m48t59->rtc);
+       if (ret)
+               return ret;
+
        m48t59_nvram_attr.size = pdata->offset;
 
        ret = sysfs_create_bin_file(&pdev->dev.kobj, &m48t59_nvram_attr);