]> git.ipfire.org Git - thirdparty/kernel/linux.git/commitdiff
iio: chemical: ens160: Stop using iio_device_claim_direct_scoped()
authorJonathan Cameron <Jonathan.Cameron@huawei.com>
Sun, 9 Feb 2025 18:06:18 +0000 (18:06 +0000)
committerJonathan Cameron <Jonathan.Cameron@huawei.com>
Mon, 17 Feb 2025 13:02:53 +0000 (13:02 +0000)
This complex cleanup.h use case of conditional guards has proved
to be more trouble that it is worth in terms of false positive compiler
warnings and hard to read code.

Move directly to the new claim/release_direct() that allow sparse
to check for unbalanced context.

Reviewed-by: Gustavo Silva <gustavograzs@gmail.com>
Reviewed-by: David Lechner <dlechner@baylibre.com>
Link: https://patch.msgid.link/20250209180624.701140-22-jic23@kernel.org
Signed-off-by: Jonathan Cameron <Jonathan.Cameron@huawei.com>
drivers/iio/chemical/ens160_core.c

index 48d5ad2075b6e3e09283739f0169e8cd1b3bf2cb..152f81ff57e31223e5c446e4f3c5947d4decea79 100644 (file)
@@ -100,25 +100,35 @@ static const struct iio_chan_spec ens160_channels[] = {
        IIO_CHAN_SOFT_TIMESTAMP(2),
 };
 
+static int __ens160_read_raw(struct iio_dev *indio_dev,
+                            struct iio_chan_spec const *chan,
+                            int *val)
+{
+       struct ens160_data *data = iio_priv(indio_dev);
+       int ret;
+
+       guard(mutex)(&data->mutex);
+       ret = regmap_bulk_read(data->regmap, chan->address,
+                              &data->buf, sizeof(data->buf));
+       if (ret)
+               return ret;
+       *val = le16_to_cpu(data->buf);
+       return IIO_VAL_INT;
+}
+
 static int ens160_read_raw(struct iio_dev *indio_dev,
                           struct iio_chan_spec const *chan,
                           int *val, int *val2, long mask)
 {
-       struct ens160_data *data = iio_priv(indio_dev);
        int ret;
 
        switch (mask) {
        case IIO_CHAN_INFO_RAW:
-               iio_device_claim_direct_scoped(return -EBUSY, indio_dev) {
-                       guard(mutex)(&data->mutex);
-                       ret = regmap_bulk_read(data->regmap, chan->address,
-                                              &data->buf, sizeof(data->buf));
-                       if (ret)
-                               return ret;
-                       *val = le16_to_cpu(data->buf);
-                       return IIO_VAL_INT;
-               }
-               unreachable();
+               if (!iio_device_claim_direct(indio_dev))
+                       return -EBUSY;
+               ret = __ens160_read_raw(indio_dev, chan, val);
+               iio_device_release_direct(indio_dev);
+               return ret;
        case IIO_CHAN_INFO_SCALE:
                switch (chan->channel2) {
                case IIO_MOD_CO2: