lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Message-ID: <20200911123345.GD230586@piout.net>
Date:   Fri, 11 Sep 2020 14:33:45 +0200
From:   Alexandre Belloni <alexandre.belloni@...tlin.com>
To:     Bartosz Golaszewski <brgl@...ev.pl>
Cc:     Alessandro Zummo <a.zummo@...ertech.it>, linux-rtc@...r.kernel.org,
        linux-kernel@...r.kernel.org,
        Bartosz Golaszewski <bgolaszewski@...libre.com>
Subject: Re: [PATCH v2 09/11] rtc: rx8010: switch to using the preferred RTC
 API

On 10/09/2020 15:04:44+0200, Bartosz Golaszewski wrote:
> From: Bartosz Golaszewski <bgolaszewski@...libre.com>
> 
> Use devm_rtc_allocate_device() + rtc_register_device() instead of the
> deprecated devm_rtc_device_register().
> 
> Signed-off-by: Bartosz Golaszewski <bgolaszewski@...libre.com>
> ---
>  drivers/rtc/rtc-rx8010.c | 13 +++++++++----
>  1 file changed, 9 insertions(+), 4 deletions(-)
> 
> diff --git a/drivers/rtc/rtc-rx8010.c b/drivers/rtc/rtc-rx8010.c
> index 0665878e8843..bb6578aad972 100644
> --- a/drivers/rtc/rtc-rx8010.c
> +++ b/drivers/rtc/rtc-rx8010.c
> @@ -447,16 +447,21 @@ static int rx8010_probe(struct i2c_client *client,
>  		}
>  	}
>  
> -	rx8010->rtc = devm_rtc_device_register(dev, client->name,
> -		&rx8010_rtc_ops, THIS_MODULE);
> -
> +	rx8010->rtc = devm_rtc_allocate_device(dev);
>  	if (IS_ERR(rx8010->rtc)) {
> -		dev_err(dev, "unable to register the class device\n");
> +		dev_err(dev, "unable to allocate rtc device\n");
>  		return PTR_ERR(rx8010->rtc);
>  	}
>  
> +	rx8010->rtc->ops = &rx8010_rtc_ops;
>  	rx8010->rtc->max_user_freq = 1;
>  
> +	err = rtc_register_device(rx8010->rtc);
> +	if (err) {
> +		dev_err(dev, "unable to register the class device\n");

There is no path were this would fail silently so I prefer cutting down
on the number of strings in the drivers. So you can just:

	return rtc_register_device(rx8010->rtc);

> +		return err;
> +	}
> +
>  	return 0;
>  }
>  
> -- 
> 2.26.1
> 

-- 
Alexandre Belloni, Bootlin
Embedded Linux and Kernel engineering
https://bootlin.com

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ