mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-11 12:28:41 +08:00
staging:iio:cdc:ad7150: Refactor event parameter update
Original code was ordered in a fairly unituitive fashion with the non adaptive threshold handling returning from the switch statement, whilst the adapative path did the actual writes outside the switch. Make it more readable by bringing everything within the switch statement cases and reducing scope of local variables as appropriate. Signed-off-by: Jonathan Cameron <Jonathan.Cameron@huawei.com> Reviewed-by: Alexandru Ardelean <alexandru.ardelean@analog.com> Link: https://lore.kernel.org/r/20210314181511.531414-4-jic23@kernel.org
This commit is contained in:
parent
1a17e7cbbf
commit
0c4c4a868a
@ -163,9 +163,6 @@ static int ad7150_write_event_params(struct iio_dev *indio_dev,
|
||||
enum iio_event_type type,
|
||||
enum iio_event_direction dir)
|
||||
{
|
||||
int ret;
|
||||
u16 value;
|
||||
u8 sens, timeout;
|
||||
struct ad7150_chip_info *chip = iio_priv(indio_dev);
|
||||
int rising = (dir == IIO_EV_DIR_RISING);
|
||||
u64 event_code;
|
||||
@ -177,26 +174,31 @@ static int ad7150_write_event_params(struct iio_dev *indio_dev,
|
||||
|
||||
switch (type) {
|
||||
/* Note completely different from the adaptive versions */
|
||||
case IIO_EV_TYPE_THRESH:
|
||||
value = chip->threshold[rising][chan];
|
||||
case IIO_EV_TYPE_THRESH: {
|
||||
u16 value = chip->threshold[rising][chan];
|
||||
return i2c_smbus_write_word_swapped(chip->client,
|
||||
ad7150_addresses[chan][3],
|
||||
value);
|
||||
case IIO_EV_TYPE_THRESH_ADAPTIVE:
|
||||
}
|
||||
case IIO_EV_TYPE_THRESH_ADAPTIVE: {
|
||||
int ret;
|
||||
u8 sens, timeout;
|
||||
|
||||
sens = chip->thresh_sensitivity[rising][chan];
|
||||
ret = i2c_smbus_write_byte_data(chip->client,
|
||||
ad7150_addresses[chan][4],
|
||||
sens);
|
||||
if (ret)
|
||||
return ret;
|
||||
|
||||
timeout = chip->thresh_timeout[rising][chan];
|
||||
break;
|
||||
return i2c_smbus_write_byte_data(chip->client,
|
||||
ad7150_addresses[chan][5],
|
||||
timeout);
|
||||
}
|
||||
default:
|
||||
return -EINVAL;
|
||||
}
|
||||
ret = i2c_smbus_write_byte_data(chip->client,
|
||||
ad7150_addresses[chan][4],
|
||||
sens);
|
||||
if (ret)
|
||||
return ret;
|
||||
return i2c_smbus_write_byte_data(chip->client,
|
||||
ad7150_addresses[chan][5],
|
||||
timeout);
|
||||
}
|
||||
|
||||
static int ad7150_write_event_config(struct iio_dev *indio_dev,
|
||||
|
Loading…
Reference in New Issue
Block a user