extcon: sm5502: Drop useless mask_invert flag on irqchip
authorAidan MacDonald <aidanmacdonald.0x0@gmail.com>
Mon, 20 Jun 2022 20:06:31 +0000 (21:06 +0100)
committerChanwoo Choi <cw00.choi@samsung.com>
Fri, 15 Jul 2022 02:37:41 +0000 (11:37 +0900)
There's no need to set the flag explicitly to false, since that
is the default value from zero initialization.

Signed-off-by: Aidan MacDonald <aidanmacdonald.0x0@gmail.com>
Signed-off-by: Chanwoo Choi <cw00.choi@samsung.com>
drivers/extcon/extcon-sm5502.c

index f706f52..8401e8b 100644 (file)
@@ -227,7 +227,6 @@ static const struct regmap_irq_chip sm5502_muic_irq_chip = {
        .name                   = "sm5502",
        .status_base            = SM5502_REG_INT1,
        .mask_base              = SM5502_REG_INTMASK1,
-       .mask_invert            = false,
        .num_regs               = 2,
        .irqs                   = sm5502_irqs,
        .num_irqs               = ARRAY_SIZE(sm5502_irqs),
@@ -276,7 +275,6 @@ static const struct regmap_irq_chip sm5504_muic_irq_chip = {
        .name                   = "sm5504",
        .status_base            = SM5502_REG_INT1,
        .mask_base              = SM5502_REG_INTMASK1,
-       .mask_invert            = false,
        .num_regs               = 2,
        .irqs                   = sm5504_irqs,
        .num_irqs               = ARRAY_SIZE(sm5504_irqs),