From: Bartosz Golaszewski <[email protected]>

devm_rtc_device_register() is deprecated. Use devm_rtc_allocate_device()
and devm_rtc_register_device() pair instead.

Signed-off-by: Bartosz Golaszewski <[email protected]>
---
 drivers/rtc/rtc-max6902.c | 7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/drivers/rtc/rtc-max6902.c b/drivers/rtc/rtc-max6902.c
index daaeb6fb6c2d..9eed4ee05892 100644
--- a/drivers/rtc/rtc-max6902.c
+++ b/drivers/rtc/rtc-max6902.c
@@ -130,13 +130,14 @@ static int max6902_probe(struct spi_device *spi)
        if (res != 0)
                return res;
 
-       rtc = devm_rtc_device_register(&spi->dev, "max6902",
-                               &max6902_rtc_ops, THIS_MODULE);
+       rtc = devm_rtc_allocate_device(&spi->dev);
        if (IS_ERR(rtc))
                return PTR_ERR(rtc);
 
+       rtc->ops = &max6902_rtc_ops;
        spi_set_drvdata(spi, rtc);
-       return 0;
+
+       return devm_rtc_register_device(rtc);
 }
 
 static struct spi_driver max6902_driver = {
-- 
2.29.1

Reply via email to