rtc: ps3: 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:44:27 +01:00
Родитель e85b930bc6
Коммит 0b5e47bbaa
1 изменённых файлов: 5 добавлений и 3 удалений

Просмотреть файл

@ -47,13 +47,15 @@ static int __init ps3_rtc_probe(struct platform_device *dev)
{ {
struct rtc_device *rtc; struct rtc_device *rtc;
rtc = devm_rtc_device_register(&dev->dev, "rtc-ps3", &ps3_rtc_ops, rtc = devm_rtc_allocate_device(&dev->dev);
THIS_MODULE);
if (IS_ERR(rtc)) if (IS_ERR(rtc))
return PTR_ERR(rtc); return PTR_ERR(rtc);
rtc->ops = &ps3_rtc_ops;
platform_set_drvdata(dev, rtc); platform_set_drvdata(dev, rtc);
return 0;
return rtc_register_device(rtc);
} }
static struct platform_driver ps3_rtc_driver = { static struct platform_driver ps3_rtc_driver = {