diff options
author | Aidan MacDonald <aidanmacdonald.0x0@gmail.com> | 2022-11-12 16:18:34 +0100 |
---|---|---|
committer | Lee Jones <lee@kernel.org> | 2022-12-07 14:28:15 +0100 |
commit | 50ff095ba366cca51084a4a5eebd600b432e31f0 (patch) | |
tree | 36cfa82c54c9c4a25cc2d6824ce21bb7285bea73 /drivers/mfd/tps65090.c | |
parent | mfd: sun4i-gpadc: Replace irqchip mask_invert with unmask_base (diff) | |
download | linux-50ff095ba366cca51084a4a5eebd600b432e31f0.tar.xz linux-50ff095ba366cca51084a4a5eebd600b432e31f0.zip |
mfd: tps65090: Replace irqchip mask_invert with unmask_base
Remove use of the deprecated mask_invert flag. Inverted mask
registers (where a '1' bit enables an IRQ) can be described more
directly as an unmask register.
Signed-off-by: Aidan MacDonald <aidanmacdonald.0x0@gmail.com>
Signed-off-by: Lee Jones <lee@kernel.org>
Link: https://lore.kernel.org/r/20221112151835.39059-18-aidanmacdonald.0x0@gmail.com
Diffstat (limited to 'drivers/mfd/tps65090.c')
-rw-r--r-- | drivers/mfd/tps65090.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/mfd/tps65090.c b/drivers/mfd/tps65090.c index e1f2491a2578..af718a9c58b3 100644 --- a/drivers/mfd/tps65090.c +++ b/drivers/mfd/tps65090.c @@ -127,8 +127,7 @@ static struct regmap_irq_chip tps65090_irq_chip = { .num_irqs = ARRAY_SIZE(tps65090_irqs), .num_regs = NUM_INT_REG, .status_base = TPS65090_REG_INTR_STS, - .mask_base = TPS65090_REG_INTR_MASK, - .mask_invert = true, + .unmask_base = TPS65090_REG_INTR_MASK, }; static bool is_volatile_reg(struct device *dev, unsigned int reg) |