Commit 070e8c7d authored by Matheus Tavares's avatar Matheus Tavares Committed by Jonathan Cameron

staging:iio:ad2s90: Make read_raw return spi_read's error code

Previously, when spi_read returned an error code inside ad2s90_read_raw,
the code was ignored and IIO_VAL_INT was returned. This patch makes the
function return the error code returned by spi_read when it fails.
Signed-off-by: default avatarMatheus Tavares <matheus.bernardino@usp.br>
Signed-off-by: default avatarJonathan Cameron <Jonathan.Cameron@huawei.com>
parent 5ccc612b
...@@ -36,11 +36,12 @@ static int ad2s90_read_raw(struct iio_dev *indio_dev, ...@@ -36,11 +36,12 @@ static int ad2s90_read_raw(struct iio_dev *indio_dev,
mutex_lock(&st->lock); mutex_lock(&st->lock);
ret = spi_read(st->sdev, st->rx, 2); ret = spi_read(st->sdev, st->rx, 2);
if (ret) if (ret < 0) {
goto error_ret; mutex_unlock(&st->lock);
return ret;
}
*val = (((u16)(st->rx[0])) << 4) | ((st->rx[1] & 0xF0) >> 4); *val = (((u16)(st->rx[0])) << 4) | ((st->rx[1] & 0xF0) >> 4);
error_ret:
mutex_unlock(&st->lock); mutex_unlock(&st->lock);
return IIO_VAL_INT; return IIO_VAL_INT;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment