mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/next/linux-next.git
synced 2025-01-09 07:23:14 +00:00
rtc: m48t59: switch to rtc_register_device
This allows for future improvement of the driver. Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
This commit is contained in:
parent
d7501f7094
commit
affb842b84
@ -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);
|
||||||
|
Loading…
Reference in New Issue
Block a user