mirror of
https://github.com/torvalds/linux.git
synced 2024-11-10 22:21:40 +00:00
mfd: rk8xx-core: Fix interrupt processing order for power key button
Process rise event last, to avoid stuck keys when multiple interrupts are coalesced. This can happen typically when resuming from suspend via power key press and holding the power button for a bit too short, so that RISE an FALL IRQ flags are set before any interrupt routine has a chance to run. Input subsystem will interpret it as holding down a power key for a long time, which leads to unintended initiation of shutdown UI on some OSes. Signed-off-by: Ondrej Jirman <megi@xff.cz> Link: https://lore.kernel.org/r/20240217195615.1767907-1-megi@xff.cz Signed-off-by: Lee Jones <lee@kernel.org>
This commit is contained in:
parent
8ba560ec14
commit
bda40bf667
@ -43,8 +43,8 @@ static struct resource rk806_pwrkey_resources[] = {
|
|||||||
};
|
};
|
||||||
|
|
||||||
static const struct resource rk817_pwrkey_resources[] = {
|
static const struct resource rk817_pwrkey_resources[] = {
|
||||||
DEFINE_RES_IRQ(RK817_IRQ_PWRON_RISE),
|
|
||||||
DEFINE_RES_IRQ(RK817_IRQ_PWRON_FALL),
|
DEFINE_RES_IRQ(RK817_IRQ_PWRON_FALL),
|
||||||
|
DEFINE_RES_IRQ(RK817_IRQ_PWRON_RISE),
|
||||||
};
|
};
|
||||||
|
|
||||||
static const struct resource rk817_charger_resources[] = {
|
static const struct resource rk817_charger_resources[] = {
|
||||||
|
Loading…
Reference in New Issue
Block a user