summaryrefslogtreecommitdiffstats
path: root/drivers
diff options
context:
space:
mode:
authorLars-Peter Clausen2013-03-04 20:30:00 +0100
committerJonathan Cameron2013-03-17 21:16:40 +0100
commit135f06465d6842fdf1381f2610e27ff43e81f24d (patch)
tree9f2b4b2cd4b1ca841dc650a45b93b790b78d6664 /drivers
parentusing kfifo_in_spinlocked instead of separate code. (diff)
downloadkernel-qcow2-linux-135f06465d6842fdf1381f2610e27ff43e81f24d.tar.gz
kernel-qcow2-linux-135f06465d6842fdf1381f2610e27ff43e81f24d.tar.xz
kernel-qcow2-linux-135f06465d6842fdf1381f2610e27ff43e81f24d.zip
iio:ad7923: Return error if we didn't get the expected result
Instead of leaving 'val' uninitialized return an error if the result's address did not match that of the channel we were trying to read. Signed-off-by: Lars-Peter Clausen <lars@metafoo.de> Cc: Patrick Vasseur <patrick.vasseur@c-s.fr> Cc: Christophe Leroy <christophe.leroy@c-s.fr> Signed-off-by: Jonathan Cameron <jic23@kernel.org>
Diffstat (limited to 'drivers')
-rw-r--r--drivers/iio/adc/ad7923.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/iio/adc/ad7923.c b/drivers/iio/adc/ad7923.c
index 766c74026be2..36eee248a9f6 100644
--- a/drivers/iio/adc/ad7923.c
+++ b/drivers/iio/adc/ad7923.c
@@ -199,6 +199,8 @@ static int ad7923_read_raw(struct iio_dev *indio_dev,
if (chan->address == EXTRACT(ret, 12, 4))
*val = EXTRACT(ret, 0, 12);
+ else
+ return -EIO;
return IIO_VAL_INT;
}