diff options
author | Mark Brown <broonie@linaro.org> | 2013-08-31 19:25:12 +0100 |
---|---|---|
committer | Mark Brown <broonie@linaro.org> | 2013-08-31 19:25:12 +0100 |
commit | 1801ceaf073f77e0f2ccfbd54ee0e93bd6adbb5d (patch) | |
tree | 3485d3a1d7e40eef5a72df9b21e04a83e8ba4a6f /include/linux/regmap.h | |
parent | 4ff4eb9e8c535f67ad2c1adc6c168ece1fb763bc (diff) | |
parent | 68622bdfefb969fd7cf710545d7e758a732ab01d (diff) |
Merge remote-tracking branch 'regmap/topic/irq' into regmap-next
Diffstat (limited to 'include/linux/regmap.h')
-rw-r--r-- | include/linux/regmap.h | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/include/linux/regmap.h b/include/linux/regmap.h index 580a5320cc9..bafda8759be 100644 --- a/include/linux/regmap.h +++ b/include/linux/regmap.h @@ -471,6 +471,9 @@ struct regmap_irq { * @ack_base: Base ack address. If zero then the chip is clear on read. * @wake_base: Base address for wake enables. If zero 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. + * @wake_invert: Inverted wake register: cleared bits are wake enabled. * @runtime_pm: Hold a runtime PM lock on the device when accessing it. * * @num_regs: Number of registers in each control bank. @@ -486,9 +489,10 @@ struct regmap_irq_chip { unsigned int ack_base; unsigned int wake_base; unsigned int irq_reg_stride; - unsigned int mask_invert; - unsigned int wake_invert; - bool runtime_pm; + bool init_ack_masked:1; + bool mask_invert:1; + bool wake_invert:1; + bool runtime_pm:1; int num_regs; |