diff options
author | Aidan MacDonald <aidanmacdonald.0x0@gmail.com> | 2023-02-16 22:31:59 +0000 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2023-02-17 00:08:43 +0000 |
commit | 483e6ea1b35aaeffd9b6e6e660d756be49c2a9f5 (patch) | |
tree | 802ba260de070864db3660adcb26d84eaef1c315 /include/linux/regmap.h | |
parent | 7464145862d606cf9835f24080341a397cbc0669 (diff) |
regmap-irq: Remove unused type_invert flag
type_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-1-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 | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/include/linux/regmap.h b/include/linux/regmap.h index f26432dc02ef..c2233aeb3843 100644 --- a/include/linux/regmap.h +++ b/include/linux/regmap.h @@ -1555,8 +1555,6 @@ struct regmap_irq_chip_data; * @ack_invert: Inverted ack register: cleared bits for ack. * @clear_ack: Use this to set 1 and 0 or vice-versa to clear interrupts. * @wake_invert: Inverted wake register: cleared bits are wake enabled. - * @type_invert: Invert the type flags. Deprecated, use config registers - * instead. * @type_in_mask: Use the mask registers for controlling irq type. Use this if * the hardware provides separate bits for rising/falling edge * or low/high level interrupts and they should be combined into @@ -1633,7 +1631,6 @@ struct regmap_irq_chip { unsigned int clear_ack:1; unsigned int wake_invert:1; unsigned int runtime_pm:1; - unsigned int type_invert:1; unsigned int type_in_mask:1; unsigned int clear_on_unmask:1; unsigned int not_fixed_stride:1; |