staging: iio: ad5933: avoid uninitialized variable in error case
authorArnd Bergmann <arnd@arndb.de>
Mon, 24 Oct 2016 15:22:01 +0000 (17:22 +0200)
committerWilly Tarreau <w@1wt.eu>
Fri, 10 Feb 2017 10:04:04 +0000 (11:04 +0100)
commit0b0d4fc3fbb0f757ff9d84a9ca8508e060851e49
tree21ed2da4ac6bae5281965dce964785955af7a6aa
parentc670aaed3eadc247e827f6ae21ea29a5c229deca
staging: iio: ad5933: avoid uninitialized variable in error case

commit 34eee70a7b82b09dbda4cb453e0e21d460dae226 upstream.

The ad5933_i2c_read function returns an error code to indicate
whether it could read data or not. However ad5933_work() ignores
this return code and just accesses the data unconditionally,
which gets detected by gcc as a possible bug:

drivers/staging/iio/impedance-analyzer/ad5933.c: In function 'ad5933_work':
drivers/staging/iio/impedance-analyzer/ad5933.c:649:16: warning: 'status' may be used uninitialized in this function [-Wmaybe-uninitialized]

This adds minimal error handling so we only evaluate the
data if it was correctly read.

Link: https://patchwork.kernel.org/patch/8110281/
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Acked-by: Lars-Peter Clausen <lars@metafoo.de>
Signed-off-by: Jonathan Cameron <jic23@kernel.org>
Signed-off-by: Willy Tarreau <w@1wt.eu>
drivers/staging/iio/impedance-analyzer/ad5933.c