rtc: dm355evm: convert to devm_rtc_allocate_device

This allows further improvement of the driver.

Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
This commit is contained in:
Alexandre Belloni 2019-03-20 13:43:32 +01:00
parent 2be7f1b5d0
commit c50fd69a4f

View File

@ -127,16 +127,15 @@ static int dm355evm_rtc_probe(struct platform_device *pdev)
{ {
struct rtc_device *rtc; struct rtc_device *rtc;
rtc = devm_rtc_device_register(&pdev->dev, pdev->name, rtc = devm_rtc_allocate_device(&pdev->dev);
&dm355evm_rtc_ops, THIS_MODULE); if (IS_ERR(rtc))
if (IS_ERR(rtc)) {
dev_err(&pdev->dev, "can't register RTC device, err %ld\n",
PTR_ERR(rtc));
return PTR_ERR(rtc); return PTR_ERR(rtc);
}
platform_set_drvdata(pdev, rtc); platform_set_drvdata(pdev, rtc);
return 0; rtc->ops = &dm355evm_rtc_ops;
return rtc_register_device(rtc);
} }
/* /*