lkml.org 
[lkml]   [2020]   [Nov]   [19]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
    Patch in this message
    /
    From
    Subject[PATCH 18/59] rtc: max6916: stop using deprecated RTC API
    Date
    From: Bartosz Golaszewski <bgolaszewski@baylibre.com>

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

    Signed-off-by: Bartosz Golaszewski <bgolaszewski@baylibre.com>
    ---
    drivers/rtc/rtc-max6916.c | 6 +++---
    1 file changed, 3 insertions(+), 3 deletions(-)

    diff --git a/drivers/rtc/rtc-max6916.c b/drivers/rtc/rtc-max6916.c
    index e72e768ab8ff..06e98d6351ee 100644
    --- a/drivers/rtc/rtc-max6916.c
    +++ b/drivers/rtc/rtc-max6916.c
    @@ -137,14 +137,14 @@ static int max6916_probe(struct spi_device *spi)
    max6916_read_reg(&spi->dev, MAX6916_STATUS_REG, &data);
    dev_info(&spi->dev, "MAX6916 RTC Status Reg = 0x%02x\n", data);

    - rtc = devm_rtc_device_register(&spi->dev, "max6916",
    - &max6916_rtc_ops, THIS_MODULE);
    + rtc = devm_rtc_allocate_device(&spi->dev);
    if (IS_ERR(rtc))
    return PTR_ERR(rtc);

    + rtc->ops = &max6916_rtc_ops;
    spi_set_drvdata(spi, rtc);

    - return 0;
    + return devm_rtc_register_device(rtc);
    }

    static struct spi_driver max6916_driver = {
    --
    2.29.1
    \
     
     \ /
      Last update: 2020-11-19 12:48    [W:6.823 / U:0.064 seconds]
    ©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site