OSDN Git Service

staging: iio: cdc: fix improper return value
authorPan Bian <bianpan2016@163.com>
Sat, 3 Dec 2016 13:44:30 +0000 (21:44 +0800)
committerJonathan Cameron <jic23@kernel.org>
Sun, 4 Dec 2016 10:57:57 +0000 (10:57 +0000)
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: Pan Bian <bianpan2016@163.com>
Signed-off-by: Jonathan Cameron <jic23@kernel.org>
drivers/staging/iio/cdc/ad7150.c

index 148bd43..c886751 100644 (file)
@@ -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,