aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/iio
diff options
context:
space:
mode:
authorJonathan Cameron <jic23@kernel.org>2015-05-02 11:35:02 +0100
committerJonathan Cameron <jic23@kernel.org>2015-05-13 18:40:31 +0100
commitf2c714a0a230c9b4ffdf45c5d203b8cd35126353 (patch)
tree2afac38aa6ab7396b964981232b356e52f54f0b5 /drivers/iio
parentiio: adc: ti_am335x_adc: make sample delay, open delay, averaging DT parameters (diff)
downloadlinux-dev-f2c714a0a230c9b4ffdf45c5d203b8cd35126353.tar.xz
linux-dev-f2c714a0a230c9b4ffdf45c5d203b8cd35126353.zip
iio:temp:mlx90614 trivial drop of unnecessary ret return from write_raw.
This is mostly part of an effort to clean out our current warnings and make the autobuilder build reports more useful. Still a worthwhile if trivial cleanup! Signed-off-by: Jonathan Cameron <jic23@kernel.org> Reported-by: kbuild test robot <fengguang.wu@intel.com> Cc: Vianney le Clément de Saint-Marcq <vianney.leclement@essensium.com> Cc: Peter Meerwald <pmeerw@pmeerw.net>
Diffstat (limited to 'drivers/iio')
-rw-r--r--drivers/iio/temperature/mlx90614.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/drivers/iio/temperature/mlx90614.c b/drivers/iio/temperature/mlx90614.c
index b2d3b56f1260..cb2e8ad8bfdc 100644
--- a/drivers/iio/temperature/mlx90614.c
+++ b/drivers/iio/temperature/mlx90614.c
@@ -254,9 +254,7 @@ static int mlx90614_write_raw(struct iio_dev *indio_dev,
mutex_unlock(&data->lock);
mlx90614_power_put(data);
- if (ret < 0)
- return ret;
- return 0;
+ return ret;
default:
return -EINVAL;
}