regmap: irq: make flags bool and put them in a bitfield
This patch makes mask/wake_invert bool and puts all flags into a bitfield for consistency and to save some space. Signed-off-by: Philipp Zabel <p.zabel@pengutronix.de> Signed-off-by: Mark Brown <broonie@linaro.org>
This commit is contained in:
parent
2753e6f820
commit
f484f7a6bc
1 changed files with 4 additions and 4 deletions
|
@ -486,10 +486,10 @@ struct regmap_irq_chip {
|
||||||
unsigned int ack_base;
|
unsigned int ack_base;
|
||||||
unsigned int wake_base;
|
unsigned int wake_base;
|
||||||
unsigned int irq_reg_stride;
|
unsigned int irq_reg_stride;
|
||||||
bool init_ack_masked;
|
bool init_ack_masked:1;
|
||||||
unsigned int mask_invert;
|
bool mask_invert:1;
|
||||||
unsigned int wake_invert;
|
bool wake_invert:1;
|
||||||
bool runtime_pm;
|
bool runtime_pm:1;
|
||||||
|
|
||||||
int num_regs;
|
int num_regs;
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue