mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-18 06:40:49 +07:00
staging: iio: isl29018: made error handling consistent
Changed the processing of IIO_CHAN_INFO_INT_TIME in isl29018_write_raw() to unlock the mutex and return at the end of the function if invalid input is passed in. This makes the error handling code consistent with the processing of IIO_CHAN_INFO_CALIBSCALE and IIO_CHAN_INFO_SCALE within the same function. Signed-off-by: Brian Masney <masneyb@onstation.org> Signed-off-by: Jonathan Cameron <jic23@kernel.org>
This commit is contained in:
parent
7fd1accc9f
commit
528021fcd2
@ -356,13 +356,8 @@ static int isl29018_write_raw(struct iio_dev *indio_dev,
|
|||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
case IIO_CHAN_INFO_INT_TIME:
|
case IIO_CHAN_INFO_INT_TIME:
|
||||||
if (chan->type == IIO_LIGHT) {
|
if (chan->type == IIO_LIGHT && !val)
|
||||||
if (val) {
|
|
||||||
mutex_unlock(&chip->lock);
|
|
||||||
return -EINVAL;
|
|
||||||
}
|
|
||||||
ret = isl29018_set_integration_time(chip, val2);
|
ret = isl29018_set_integration_time(chip, val2);
|
||||||
}
|
|
||||||
break;
|
break;
|
||||||
case IIO_CHAN_INFO_SCALE:
|
case IIO_CHAN_INFO_SCALE:
|
||||||
if (chan->type == IIO_LIGHT)
|
if (chan->type == IIO_LIGHT)
|
||||||
|
Loading…
Reference in New Issue
Block a user