aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/drivers/mfd/atc260x-core.c
diff options
context:
space:
mode:
authorAidan MacDonald <aidanmacdonald.0x0@gmail.com>2022-11-12 15:18:19 +0000
committerLee Jones <lee@kernel.org>2022-12-07 13:28:13 +0000
commit3db3b9a5cbcc9e96a489bca9f2f07e0193ba8e93 (patch)
treec8638a4fdf96c6bb8bddbaaa62e56ff654c38b6d /drivers/mfd/atc260x-core.c
parentmfd: 88pm800: Replace irqchip mask_invert with unmask_base (diff)
downloadwireguard-linux-3db3b9a5cbcc9e96a489bca9f2f07e0193ba8e93.tar.xz
wireguard-linux-3db3b9a5cbcc9e96a489bca9f2f07e0193ba8e93.zip
mfd: atc260x: 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-3-aidanmacdonald.0x0@gmail.com
Diffstat (limited to 'drivers/mfd/atc260x-core.c')
-rw-r--r--drivers/mfd/atc260x-core.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/drivers/mfd/atc260x-core.c b/drivers/mfd/atc260x-core.c
index 7148ff5b05b1..7c5de3ae776e 100644
--- a/drivers/mfd/atc260x-core.c
+++ b/drivers/mfd/atc260x-core.c
@@ -100,8 +100,7 @@ static const struct regmap_irq_chip atc2603c_regmap_irq_chip = {
.num_irqs = ARRAY_SIZE(atc2603c_regmap_irqs),
.num_regs = 1,
.status_base = ATC2603C_INTS_PD,
- .mask_base = ATC2603C_INTS_MSK,
- .mask_invert = true,
+ .unmask_base = ATC2603C_INTS_MSK,
};
static const struct regmap_irq_chip atc2609a_regmap_irq_chip = {
@@ -110,8 +109,7 @@ static const struct regmap_irq_chip atc2609a_regmap_irq_chip = {
.num_irqs = ARRAY_SIZE(atc2609a_regmap_irqs),
.num_regs = 1,
.status_base = ATC2609A_INTS_PD,
- .mask_base = ATC2609A_INTS_MSK,
- .mask_invert = true,
+ .unmask_base = ATC2609A_INTS_MSK,
};
static const struct resource atc2603c_onkey_resources[] = {