aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAidan MacDonald <[email protected]>2022-11-12 15:18:26 +0000
committerLee Jones <[email protected]>2022-12-07 13:28:14 +0000
commit80ff2d30c0d1a2c7e51e750a8381342a038890fe (patch)
tree9c364ea6358cf6a3d8854cc1eb5fa8b5e44e189a
parentea5718ff3970ba9ff12ae32cbd1ca6c2aa2a895b (diff)
mfd: rn5t618: 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 <[email protected]> Signed-off-by: Lee Jones <[email protected]> Link: https://lore.kernel.org/r/[email protected]
-rw-r--r--drivers/mfd/rn5t618.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/mfd/rn5t618.c b/drivers/mfd/rn5t618.c
index eb8005b4e58d..2f59230749cd 100644
--- a/drivers/mfd/rn5t618.c
+++ b/drivers/mfd/rn5t618.c
@@ -80,8 +80,7 @@ static const struct regmap_irq_chip rc5t619_irq_chip = {
.num_irqs = ARRAY_SIZE(rc5t619_irqs),
.num_regs = 1,
.status_base = RN5T618_INTMON,
- .mask_base = RN5T618_INTEN,
- .mask_invert = true,
+ .unmask_base = RN5T618_INTEN,
};
static struct i2c_client *rn5t618_pm_power_off;