summaryrefslogtreecommitdiff
path: root/drivers/mfd
diff options
context:
space:
mode:
authorAidan MacDonald <aidanmacdonald.0x0@gmail.com>2022-11-12 18:18:34 +0300
committerLee Jones <lee@kernel.org>2022-12-07 16:28:15 +0300
commit50ff095ba366cca51084a4a5eebd600b432e31f0 (patch)
tree36cfa82c54c9c4a25cc2d6824ce21bb7285bea73 /drivers/mfd
parent8d9ad03265a4f24bcf904dacdd05a451d6e51cd9 (diff)
downloadlinux-50ff095ba366cca51084a4a5eebd600b432e31f0.tar.xz
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')
-rw-r--r--drivers/mfd/tps65090.c3
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)