提交 5a88d412 编写于 作者: T Tony Lindgren 提交者: Lee Jones

mfd: cpcap: Use ack_invert interrupts

We should use ack_invert as the int_read_and_clear() in the Motorola
kernel tree does "ireg_val & ~mreg_val" before writing to the mask
register.

Fixes: 56e1d40d ("mfd: cpcap: Add minimal support")
Tested-by: NSebastian Reichel <sre@kernel.org>
Signed-off-by: NTony Lindgren <tony@atomide.com>
Signed-off-by: NLee Jones <lee.jones@linaro.org>
上级 ac894732
...@@ -99,6 +99,7 @@ static struct regmap_irq_chip cpcap_irq_chip[CPCAP_NR_IRQ_CHIPS] = { ...@@ -99,6 +99,7 @@ static struct regmap_irq_chip cpcap_irq_chip[CPCAP_NR_IRQ_CHIPS] = {
.ack_base = CPCAP_REG_MI1, .ack_base = CPCAP_REG_MI1,
.mask_base = CPCAP_REG_MIM1, .mask_base = CPCAP_REG_MIM1,
.use_ack = true, .use_ack = true,
.ack_invert = true,
}, },
{ {
.name = "cpcap-m2", .name = "cpcap-m2",
...@@ -107,6 +108,7 @@ static struct regmap_irq_chip cpcap_irq_chip[CPCAP_NR_IRQ_CHIPS] = { ...@@ -107,6 +108,7 @@ static struct regmap_irq_chip cpcap_irq_chip[CPCAP_NR_IRQ_CHIPS] = {
.ack_base = CPCAP_REG_MI2, .ack_base = CPCAP_REG_MI2,
.mask_base = CPCAP_REG_MIM2, .mask_base = CPCAP_REG_MIM2,
.use_ack = true, .use_ack = true,
.ack_invert = true,
}, },
{ {
.name = "cpcap1-4", .name = "cpcap1-4",
...@@ -116,6 +118,7 @@ static struct regmap_irq_chip cpcap_irq_chip[CPCAP_NR_IRQ_CHIPS] = { ...@@ -116,6 +118,7 @@ static struct regmap_irq_chip cpcap_irq_chip[CPCAP_NR_IRQ_CHIPS] = {
.mask_base = CPCAP_REG_INTM1, .mask_base = CPCAP_REG_INTM1,
.type_base = CPCAP_REG_INTS1, .type_base = CPCAP_REG_INTS1,
.use_ack = true, .use_ack = true,
.ack_invert = true,
}, },
}; };
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册