Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 91ca1a8c authored by Pan Bian's avatar Pan Bian Committed by Jonathan Cameron
Browse files

staging: iio: cdc: fix improper return value



At the end of function ad7150_write_event_config(), directly returns 0.
As a result, the errors will be ignored by the callers. It may be better
to return variable "ret".

Signed-off-by: default avatarPan Bian <bianpan2016@163.com>
Signed-off-by: default avatarJonathan Cameron <jic23@kernel.org>
parent db4e5376
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -274,7 +274,7 @@ static int ad7150_write_event_config(struct iio_dev *indio_dev,
error_ret:
	mutex_unlock(&chip->state_lock);

	return 0;
	return ret;
}

static int ad7150_read_event_value(struct iio_dev *indio_dev,