iio:chemical:scd30: Use IRQF_NO_AUTOEN to avoid irq request then disable
authorJonathan Cameron <Jonathan.Cameron@huawei.com>
Fri, 2 Apr 2021 18:45:42 +0000 (19:45 +0100)
committerJonathan Cameron <Jonathan.Cameron@huawei.com>
Wed, 7 Apr 2021 07:36:39 +0000 (08:36 +0100)
This new flag cleanly avoids the need for a dance where we request the
interrupt only to immediately disabling it by ensuring it is not
auto-enabled in the first place.

Signed-off-by: Jonathan Cameron <Jonathan.Cameron@huawei.com>
Cc: Tomasz Duszynski <tomasz.duszynski@octakon.com>
Reviewed-by: Barry Song <song.bao.hua@hisilicon.com>
Reviewed-by: Andy Shevchenko <andy.shevchenko@gmail.com>
Reviewed-by: Lars-Peter Clausen <lars@metafoo.de>
Link: https://lore.kernel.org/r/20210402184544.488862-6-jic23@kernel.org
drivers/iio/chemical/scd30_core.c

index 261c277..d89f117 100644 (file)
@@ -655,19 +655,19 @@ static int scd30_setup_trigger(struct iio_dev *indio_dev)
 
        indio_dev->trig = iio_trigger_get(trig);
 
+       /*
+        * Interrupt is enabled just before taking a fresh measurement
+        * and disabled afterwards. This means we need to ensure it is not
+        * enabled here to keep calls to enable/disable balanced.
+        */
        ret = devm_request_threaded_irq(dev, state->irq, scd30_irq_handler,
-                                       scd30_irq_thread_handler, IRQF_TRIGGER_HIGH | IRQF_ONESHOT,
+                                       scd30_irq_thread_handler,
+                                       IRQF_TRIGGER_HIGH | IRQF_ONESHOT |
+                                       IRQF_NO_AUTOEN,
                                        indio_dev->name, indio_dev);
        if (ret)
                dev_err(dev, "failed to request irq\n");
 
-       /*
-        * Interrupt is enabled just before taking a fresh measurement
-        * and disabled afterwards. This means we need to disable it here
-        * to keep calls to enable/disable balanced.
-        */
-       disable_irq(state->irq);
-
        return ret;
 }