提交 0d3a9b2d 编写于 作者: S Sachin Kamat 提交者: Jonathan Cameron

iio: ad5504: Remove redundant variable

By re-arranging the code, 'ret' can be removed from this
function.
Signed-off-by: NSachin Kamat <sachin.kamat@samsung.com>
Acked-by: NLars-Peter Clausen <lars@metafoo.de>
Signed-off-by: NJonathan Cameron <jic23@kernel.org>
上级 15255c6b
...@@ -125,7 +125,6 @@ static int ad5504_write_raw(struct iio_dev *indio_dev, ...@@ -125,7 +125,6 @@ static int ad5504_write_raw(struct iio_dev *indio_dev,
long mask) long mask)
{ {
struct ad5504_state *st = iio_priv(indio_dev); struct ad5504_state *st = iio_priv(indio_dev);
int ret;
switch (mask) { switch (mask) {
case IIO_CHAN_INFO_RAW: case IIO_CHAN_INFO_RAW:
...@@ -134,10 +133,8 @@ static int ad5504_write_raw(struct iio_dev *indio_dev, ...@@ -134,10 +133,8 @@ static int ad5504_write_raw(struct iio_dev *indio_dev,
return ad5504_spi_write(st, chan->address, val); return ad5504_spi_write(st, chan->address, val);
default: default:
ret = -EINVAL; return -EINVAL;
} }
return -EINVAL;
} }
static const char * const ad5504_powerdown_modes[] = { static const char * const ad5504_powerdown_modes[] = {
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册