All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] iio: accel: fxls8962af: fix potential use of uninitialized symbol
@ 2021-06-23 11:31 Sean Nyekjaer
  2021-07-18 14:37 ` Jonathan Cameron
  0 siblings, 1 reply; 2+ messages in thread
From: Sean Nyekjaer @ 2021-06-23 11:31 UTC (permalink / raw)
  To: Jonathan Cameron, Lars-Peter Clausen, Sean Nyekjaer
  Cc: kernel test robot, Dan Carpenter, Jonathan Cameron, linux-iio,
	linux-kernel

Reported-by: kernel test robot <lkp@intel.com>
Reported-by: Dan Carpenter <dan.carpenter@oracle.com>
Signed-off-by: Sean Nyekjaer <sean@geanix.com>
Fixes: af959b7b96b8 ("iio: accel: fxls8962af: fix errata bug E3 - I2C burst reads")
---
 drivers/iio/accel/fxls8962af-core.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/iio/accel/fxls8962af-core.c b/drivers/iio/accel/fxls8962af-core.c
index 078d87865fde..0019f1ea7df2 100644
--- a/drivers/iio/accel/fxls8962af-core.c
+++ b/drivers/iio/accel/fxls8962af-core.c
@@ -637,7 +637,7 @@ static int fxls8962af_i2c_raw_read_errata3(struct fxls8962af_data *data,
 			return ret;
 	}
 
-	return ret;
+	return 0;
 }
 
 static int fxls8962af_fifo_transfer(struct fxls8962af_data *data,
-- 
2.31.0


^ permalink raw reply related	[flat|nested] 2+ messages in thread

* Re: [PATCH] iio: accel: fxls8962af: fix potential use of uninitialized symbol
  2021-06-23 11:31 [PATCH] iio: accel: fxls8962af: fix potential use of uninitialized symbol Sean Nyekjaer
@ 2021-07-18 14:37 ` Jonathan Cameron
  0 siblings, 0 replies; 2+ messages in thread
From: Jonathan Cameron @ 2021-07-18 14:37 UTC (permalink / raw)
  To: Sean Nyekjaer
  Cc: Lars-Peter Clausen, kernel test robot, Dan Carpenter,
	Jonathan Cameron, linux-iio, linux-kernel

On Wed, 23 Jun 2021 13:31:15 +0200
Sean Nyekjaer <sean@geanix.com> wrote:

> Reported-by: kernel test robot <lkp@intel.com>
> Reported-by: Dan Carpenter <dan.carpenter@oracle.com>
> Signed-off-by: Sean Nyekjaer <sean@geanix.com>
> Fixes: af959b7b96b8 ("iio: accel: fxls8962af: fix errata bug E3 - I2C burst reads")
Oops. Seems I applied this but didn't reply here to say I'd done so.

Thanks,

Jonathan

> ---
>  drivers/iio/accel/fxls8962af-core.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/drivers/iio/accel/fxls8962af-core.c b/drivers/iio/accel/fxls8962af-core.c
> index 078d87865fde..0019f1ea7df2 100644
> --- a/drivers/iio/accel/fxls8962af-core.c
> +++ b/drivers/iio/accel/fxls8962af-core.c
> @@ -637,7 +637,7 @@ static int fxls8962af_i2c_raw_read_errata3(struct fxls8962af_data *data,
>  			return ret;
>  	}
>  
> -	return ret;
> +	return 0;
>  }
>  
>  static int fxls8962af_fifo_transfer(struct fxls8962af_data *data,


^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2021-07-18 14:35 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-06-23 11:31 [PATCH] iio: accel: fxls8962af: fix potential use of uninitialized symbol Sean Nyekjaer
2021-07-18 14:37 ` Jonathan Cameron

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.