aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAidan MacDonald <[email protected]>2022-11-12 15:24:46 +0000
committerChanwoo Choi <[email protected]>2022-12-03 15:03:39 +0900
commit5de7cdd7fa0f62b3e8d2facc8f604e49d887677e (patch)
treea6209c81d83cd5c13113116b9550dad9747b7a1f
parenteb7081409f94a9a8608593d0fb63a1aa3d6f95d8 (diff)
extcon: max77843: 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]> Reviewed-by: Krzysztof Kozlowski <[email protected]> Signed-off-by: Chanwoo Choi <[email protected]>
-rw-r--r--drivers/extcon/extcon-max77843.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/extcon/extcon-max77843.c b/drivers/extcon/extcon-max77843.c
index 8e6e97ec65a8..1bc0426ce3f1 100644
--- a/drivers/extcon/extcon-max77843.c
+++ b/drivers/extcon/extcon-max77843.c
@@ -189,8 +189,7 @@ static const struct regmap_irq max77843_muic_irq[] = {
static const struct regmap_irq_chip max77843_muic_irq_chip = {
.name = "max77843-muic",
.status_base = MAX77843_MUIC_REG_INT1,
- .mask_base = MAX77843_MUIC_REG_INTMASK1,
- .mask_invert = true,
+ .unmask_base = MAX77843_MUIC_REG_INTMASK1,
.num_regs = 3,
.irqs = max77843_muic_irq,
.num_irqs = ARRAY_SIZE(max77843_muic_irq),