提交 1af468eb 编写于 作者: H Hans de Goede 提交者: Lee Jones

mfd: axp20x: Fix axp288 PEK_DBR and PEK_DBF irqs being swapped

The R in PEK_DBR stands for rising, so it should be mapped to
AXP288_IRQ_POKP where the last P stands for positive edge.

Likewise PEK_DBF should be mapped to the falling edge, aka the
_N_egative edge, so it should be mapped to AXP288_IRQ_POKN.

This fixes the inverted powerbutton status reporting by the
axp20x-pek driver.
Signed-off-by: NHans de Goede <hdegoede@redhat.com>
Acked-by: NChen-Yu Tsai <wens@csie.org>
Signed-off-by: NLee Jones <lee.jones@linaro.org>
上级 8b44e678
...@@ -207,14 +207,14 @@ static struct resource axp22x_pek_resources[] = { ...@@ -207,14 +207,14 @@ static struct resource axp22x_pek_resources[] = {
static struct resource axp288_power_button_resources[] = { static struct resource axp288_power_button_resources[] = {
{ {
.name = "PEK_DBR", .name = "PEK_DBR",
.start = AXP288_IRQ_POKN, .start = AXP288_IRQ_POKP,
.end = AXP288_IRQ_POKN, .end = AXP288_IRQ_POKP,
.flags = IORESOURCE_IRQ, .flags = IORESOURCE_IRQ,
}, },
{ {
.name = "PEK_DBF", .name = "PEK_DBF",
.start = AXP288_IRQ_POKP, .start = AXP288_IRQ_POKN,
.end = AXP288_IRQ_POKP, .end = AXP288_IRQ_POKN,
.flags = IORESOURCE_IRQ, .flags = IORESOURCE_IRQ,
}, },
}; };
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册