diff options
author | Aidan MacDonald <aidanmacdonald.0x0@gmail.com> | 2023-02-16 22:32:00 +0000 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2023-02-17 00:08:44 +0000 |
commit | c74e7af1245b2073930afc9a2a340d91e08f0f14 (patch) | |
tree | fff554c68e6517d7fb553aa885aedf786fa7ad90 /include/linux/regmap.h | |
parent | 483e6ea1b35aaeffd9b6e6e660d756be49c2a9f5 (diff) |
regmap-irq: Remove unused mask_invert flag
mask_invert is deprecated and no longer used; it can now be removed.
Signed-off-by: Aidan MacDonald <aidanmacdonald.0x0@gmail.com>
Link: https://lore.kernel.org/r/20230216223200.150679-2-aidanmacdonald.0x0@gmail.com
Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'include/linux/regmap.h')
-rw-r--r-- | include/linux/regmap.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/include/linux/regmap.h b/include/linux/regmap.h index c2233aeb3843..4d10790adeb0 100644 --- a/include/linux/regmap.h +++ b/include/linux/regmap.h @@ -1540,9 +1540,6 @@ struct regmap_irq_chip_data; * @config_base: Base address for IRQ type config regs. If null unsupported. * @irq_reg_stride: Stride to use for chips where registers are not contiguous. * @init_ack_masked: Ack all masked interrupts once during initalization. - * @mask_invert: Inverted mask register: cleared bits are masked out. - * Deprecated; prefer describing an inverted mask register as - * an unmask register. * @mask_unmask_non_inverted: Controls mask bit inversion for chips that set * both @mask_base and @unmask_base. If false, mask and unmask bits are * inverted (which is deprecated behavior); if true, bits will not be @@ -1624,7 +1621,6 @@ struct regmap_irq_chip { const unsigned int *config_base; unsigned int irq_reg_stride; unsigned int init_ack_masked:1; - unsigned int mask_invert:1; unsigned int mask_unmask_non_inverted:1; unsigned int use_ack:1; unsigned int ack_invert:1; |