Commit affb842b authored by Alexandre Belloni's avatar Alexandre Belloni

rtc: m48t59: switch to rtc_register_device

This allows for future improvement of the driver.
Signed-off-by: default avatarAlexandre Belloni <alexandre.belloni@bootlin.com>
parent d7501f70
...@@ -480,11 +480,16 @@ static int m48t59_rtc_probe(struct platform_device *pdev) ...@@ -480,11 +480,16 @@ static int m48t59_rtc_probe(struct platform_device *pdev)
spin_lock_init(&m48t59->lock); spin_lock_init(&m48t59->lock);
platform_set_drvdata(pdev, m48t59); platform_set_drvdata(pdev, m48t59);
m48t59->rtc = devm_rtc_device_register(&pdev->dev, name, ops, m48t59->rtc = devm_rtc_allocate_device(&pdev->dev);
THIS_MODULE);
if (IS_ERR(m48t59->rtc)) if (IS_ERR(m48t59->rtc))
return PTR_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; m48t59_nvram_attr.size = pdata->offset;
ret = sysfs_create_bin_file(&pdev->dev.kobj, &m48t59_nvram_attr); ret = sysfs_create_bin_file(&pdev->dev.kobj, &m48t59_nvram_attr);
......
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