aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/iio/accel
diff options
context:
space:
mode:
authorSean Nyekjaer <sean@geanix.com>2021-07-09 09:17:27 +0200
committerJonathan Cameron <Jonathan.Cameron@huawei.com>2021-07-13 18:47:22 +0100
commit4377d9ab1f162e58e0e5ae89c9a5fd7b4d8a6bdb (patch)
treea463566434d3ad9930f9a7e76f37e13ddaaa96a6 /drivers/iio/accel
parentLinux 5.14-rc1 (diff)
downloadlinux-dev-4377d9ab1f162e58e0e5ae89c9a5fd7b4d8a6bdb.tar.xz
linux-dev-4377d9ab1f162e58e0e5ae89c9a5fd7b4d8a6bdb.zip
iio: accel: fxls8962af: fix potential use of uninitialized symbol
Fix this warning from kernel test robot: smatch warnings: drivers/iio/accel/fxls8962af-core.c:640 fxls8962af_i2c_raw_read_errata3() error: uninitialized symbol 'ret'. 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") Link: https://lore.kernel.org/r/20210709071727.2453536-1-sean@geanix.com Signed-off-by: Jonathan Cameron <Jonathan.Cameron@huawei.com>
Diffstat (limited to 'drivers/iio/accel')
-rw-r--r--drivers/iio/accel/fxls8962af-core.c2
1 files changed, 1 insertions, 1 deletions
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,