From: Aidan MacDonald Date: Sat, 12 Nov 2022 15:18:34 +0000 (+0000) Subject: mfd: tps65090: Replace irqchip mask_invert with unmask_base X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=50ff095ba366cca51084a4a5eebd600b432e31f0;p=linux.git 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 Signed-off-by: Lee Jones Link: https://lore.kernel.org/r/20221112151835.39059-18-aidanmacdonald.0x0@gmail.com --- diff --git a/drivers/mfd/tps65090.c b/drivers/mfd/tps65090.c index e1f2491a2578d..af718a9c58b33 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)