iio: magn: ak8974: use irq_get_trigger_type()
authorJonathan Cameron <Jonathan.Cameron@huawei.com>
Sun, 1 Sep 2024 13:59:49 +0000 (14:59 +0100)
committerJonathan Cameron <Jonathan.Cameron@huawei.com>
Mon, 30 Sep 2024 08:20:59 +0000 (09:20 +0100)
Use irq_get_trigger_type() to replace getting the irq data then the
type in two steps.

Reviewed-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Reviewed-by: Linus Walleij <linus.walleij@linaro.org>
Link: https://patch.msgid.link/20240901135950.797396-15-jic23@kernel.org
Signed-off-by: Jonathan Cameron <Jonathan.Cameron@huawei.com>
drivers/iio/magnetometer/ak8974.c

index 961b1e0..8306a18 100644 (file)
@@ -910,7 +910,7 @@ static int ak8974_probe(struct i2c_client *i2c)
 
        /* If we have a valid DRDY IRQ, make use of it */
        if (irq > 0) {
-               irq_trig = irqd_get_trigger_type(irq_get_irq_data(irq));
+               irq_trig = irq_get_trigger_type(irq);
                if (irq_trig == IRQF_TRIGGER_RISING) {
                        dev_info(&i2c->dev, "enable rising edge DRDY IRQ\n");
                } else if (irq_trig == IRQF_TRIGGER_FALLING) {