From: Aidan MacDonald Date: Sat, 12 Nov 2022 15:18:26 +0000 (+0000) Subject: mfd: rn5t618: Replace irqchip mask_invert with unmask_base X-Git-Tag: v6.2-rc1~30^2~24 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=80ff2d30c0d1a2c7e51e750a8381342a038890fe;p=thirdparty%2Flinux.git 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 Signed-off-by: Lee Jones Link: https://lore.kernel.org/r/20221112151835.39059-10-aidanmacdonald.0x0@gmail.com --- diff --git a/drivers/mfd/rn5t618.c b/drivers/mfd/rn5t618.c index eb8005b4e58d3..2f59230749cd9 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;