Re: [PATCH 4/7] iio: light: veml6030: make use of regmap_set_bits()

From: Jonathan Cameron
Date: Sat Sep 14 2024 - 10:55:28 EST


On Fri, 13 Sep 2024 15:18:59 +0200
Javier Carrasco <javier.carrasco.cruz@xxxxxxxxx> wrote:

> Instead of using regmap_update_bits() and passing val = 1, use
> regmap_set_bits().
>
Applied but description tweaked as key here is that VEML6030_ALS_SD is 1.
If it contained other bits then this change would be wrong.


> Signed-off-by: Javier Carrasco <javier.carrasco.cruz@xxxxxxxxx>
> ---
> drivers/iio/light/veml6030.c | 4 ++--
> 1 file changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/drivers/iio/light/veml6030.c b/drivers/iio/light/veml6030.c
> index df2ba3078b91..5d4c2e35b987 100644
> --- a/drivers/iio/light/veml6030.c
> +++ b/drivers/iio/light/veml6030.c
> @@ -149,8 +149,8 @@ static int veml6030_als_pwr_on(struct veml6030_data *data)
>
> static int veml6030_als_shut_down(struct veml6030_data *data)
> {
> - return regmap_update_bits(data->regmap, VEML6030_REG_ALS_CONF,
> - VEML6030_ALS_SD, 1);
> + return regmap_set_bits(data->regmap, VEML6030_REG_ALS_CONF,
> + VEML6030_ALS_SD);
> }
>
> static void veml6030_als_shut_down_action(void *data)
>