diff options
author | Aidan MacDonald <aidanmacdonald.0x0@gmail.com> | 2022-11-12 15:18:23 +0000 |
---|---|---|
committer | Lee Jones <lee@kernel.org> | 2022-12-07 13:28:14 +0000 |
commit | b171b0b46b2b6441f04c9a800251ebf82ad67f09 (patch) | |
tree | c2d5fc2ea0d1e44aeff286a81f5fdbe8cfd7c66b | |
parent | 911b8b42242256f53ca210a45580e2c35323e6b9 (diff) |
mfd: max77650: Remove useless type_invert flag
The type_invert flag does nothing when type_in_mask is set, and
it's part of deprecated functionality in regmap-irq. Remove it.
Signed-off-by: Aidan MacDonald <aidanmacdonald.0x0@gmail.com>
Acked-by: Bartosz Golaszewski <bartosz.golaszewski@linaro.org>
Signed-off-by: Lee Jones <lee@kernel.org>
Link: https://lore.kernel.org/r/20221112151835.39059-7-aidanmacdonald.0x0@gmail.com
-rw-r--r-- | drivers/mfd/max77650.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/mfd/max77650.c b/drivers/mfd/max77650.c index 777485a33bc0..3c07fcdd9d07 100644 --- a/drivers/mfd/max77650.c +++ b/drivers/mfd/max77650.c @@ -138,7 +138,6 @@ static const struct regmap_irq_chip max77650_irq_chip = { .status_base = MAX77650_REG_INT_GLBL, .mask_base = MAX77650_REG_INTM_GLBL, .type_in_mask = true, - .type_invert = true, .init_ack_masked = true, .clear_on_unmask = true, }; |