Re: [PATCH] iio: light: veml6070: fix veml6070_read() return value
From: Jonathan Cameron
Date: Wed Mar 25 2026 - 12:50:55 EST
On Wed, 25 Mar 2026 12:31:29 +0000
Nuno Sá <noname.nuno@xxxxxxxxx> wrote:
> On Wed, 2026-03-25 at 12:32 +0100, Aldo Conte wrote:
> > veml6070_read() computes the sensor value in ret but
> > returns 0 instead of the actual result. This causes
> > veml6070_read_raw() to always report 0.
> >
> > Return the computed value instead of 0.
> >
> > Running make W=1 returns no errors. I was unable
> > to test the patch because I do not have the hardware.
> > Found by code inspection.
> >
> > Fixes: bb18885ed823 ("iio: light: veml6070: add support for integration time")
> > Signed-off-by: Aldo Conte <aldocontelk@xxxxxxxxx>
> > ---
>
> Makes sense...
>
> Reviewed-by: Nuno Sá <nuno.sa@xxxxxxxxxx>
>
I'm not going to try and figure out how that one got through!
Any applied and marked for stable.
Thanks,
Jonathan
> > drivers/iio/light/veml6070.c | 4 +---
> > 1 file changed, 1 insertion(+), 3 deletions(-)
> >
> > diff --git a/drivers/iio/light/veml6070.c b/drivers/iio/light/veml6070.c
> > index 6d4483c85f30..74d7246e5225 100644
> > --- a/drivers/iio/light/veml6070.c
> > +++ b/drivers/iio/light/veml6070.c
> > @@ -134,9 +134,7 @@ static int veml6070_read(struct veml6070_data *data)
> > if (ret < 0)
> > return ret;
> >
> > - ret = (msb << 8) | lsb;
> > -
> > - return 0;
> > + return (msb << 8) | lsb;
> > }
> >
> > static const struct iio_chan_spec veml6070_channels[] = {