diff options
author | Daniel Drake <[email protected]> | 2020-12-07 14:43:22 +0800 |
---|---|---|
committer | Hans de Goede <[email protected]> | 2020-12-07 16:10:11 +0100 |
commit | 8b105ef6ffb78d208b93e4c4b47e83dbd438cc12 (patch) | |
tree | 7817894ee9d9d6541bb1ffe038320221abcdc927 | |
parent | 1f7cb4665df8a25ae577a822a47fc4576f60c30f (diff) |
acer-wireless: send an EV_SYN/SYN_REPORT between state changes
Sending the switch state change twice within the same frame is invalid
evdev protocol and only works if the client handles keys immediately as
well. Processing events immediately is incorrect, it forces a fake
order of events that does not exist on the device.
Recent versions of libinput changed to only process the device state and
SYN_REPORT time, so now the key event is lost.
Same fix as 'commit <bff5bf9db1c94> ("platform/x86: asus-wireless: send
an EV_SYN/SYN_REPORT between state changes")'
Signed-off-by: Daniel Drake <[email protected]>
Signed-off-by: Chris Chiu <[email protected]>
Link: https://lore.kernel.org/r/[email protected]
Signed-off-by: Hans de Goede <[email protected]>
-rw-r--r-- | drivers/platform/x86/acer-wireless.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/platform/x86/acer-wireless.c b/drivers/platform/x86/acer-wireless.c index e0976180532a..1b5d935d085a 100644 --- a/drivers/platform/x86/acer-wireless.c +++ b/drivers/platform/x86/acer-wireless.c @@ -28,6 +28,7 @@ static void acer_wireless_notify(struct acpi_device *adev, u32 event) return; } input_report_key(idev, KEY_RFKILL, 1); + input_sync(idev); input_report_key(idev, KEY_RFKILL, 0); input_sync(idev); } |