Skip to content

Commit

Permalink
iio:temp:mlx90614 trivial drop of unnecessary ret return from write_raw.
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Jonathan Cameron committed May 13, 2015
1 parent 5dc11e8 commit f2c714a
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions drivers/iio/temperature/mlx90614.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
Expand Down

0 comments on commit f2c714a

Please sign in to comment.