staging:iio:cdc:ad7150: Refactor event parameter update
authorJonathan Cameron <Jonathan.Cameron@huawei.com>
Sun, 14 Mar 2021 18:14:50 +0000 (18:14 +0000)
committerJonathan Cameron <Jonathan.Cameron@huawei.com>
Wed, 7 Apr 2021 07:36:35 +0000 (08:36 +0100)
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
drivers/staging/iio/cdc/ad7150.c

index 4dac4aa..d6a7bfd 100644 (file)
@@ -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,