staging: iio: adc: ad7280a: handle error from __ad7280_read32()
authorSlawomir Stepien <sst@poczta.fm>
Sat, 20 Oct 2018 21:04:11 +0000 (23:04 +0200)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Wed, 20 Feb 2019 09:08:55 +0000 (10:08 +0100)
[ Upstream commit 0559ef7fde67bc6c83c6eb6329dbd6649528263e ]

Inside __ad7280_read32(), the spi_sync_transfer() can fail with negative
error code. This change will ensure that this error is being passed up
in the call stack, so it can be handled.

Signed-off-by: Slawomir Stepien <sst@poczta.fm>
Signed-off-by: Jonathan Cameron <Jonathan.Cameron@huawei.com>
Signed-off-by: Sasha Levin <sashal@kernel.org>
drivers/staging/iio/adc/ad7280a.c

index d215edf..0ad4af5 100644 (file)
@@ -250,7 +250,9 @@ static int ad7280_read(struct ad7280_state *st, unsigned devaddr,
        if (ret)
                return ret;
 
-       __ad7280_read32(st, &tmp);
+       ret = __ad7280_read32(st, &tmp);
+       if (ret)
+               return ret;
 
        if (ad7280_check_crc(st, tmp))
                return -EIO;
@@ -288,7 +290,9 @@ static int ad7280_read_channel(struct ad7280_state *st, unsigned devaddr,
 
        ad7280_delay(st);
 
-       __ad7280_read32(st, &tmp);
+       ret = __ad7280_read32(st, &tmp);
+       if (ret)
+               return ret;
 
        if (ad7280_check_crc(st, tmp))
                return -EIO;
@@ -321,7 +325,9 @@ static int ad7280_read_all_channels(struct ad7280_state *st, unsigned cnt,
        ad7280_delay(st);
 
        for (i = 0; i < cnt; i++) {
-               __ad7280_read32(st, &tmp);
+               ret = __ad7280_read32(st, &tmp);
+               if (ret)
+                       return ret;
 
                if (ad7280_check_crc(st, tmp))
                        return -EIO;
@@ -364,7 +370,10 @@ static int ad7280_chain_setup(struct ad7280_state *st)
                return ret;
 
        for (n = 0; n <= AD7280A_MAX_CHAIN; n++) {
-               __ad7280_read32(st, &val);
+               ret = __ad7280_read32(st, &val);
+               if (ret)
+                       return ret;
+
                if (val == 0)
                        return n - 1;