diff options
author | Chris Chiu <chiu@endlessm.com> | 2017-02-08 14:51:41 +0100 |
---|---|---|
committer | Darren Hart <dvhart@linux.intel.com> | 2017-02-25 08:48:50 +0100 |
commit | 5ffa572a431ff3fd6175419656603519fa471c27 (patch) | |
tree | af883ffbfca3d4888b5147b607d525a0738d92f3 /drivers/platform/x86/acer-wmi.c | |
parent | platform/x86: acer-wmi: Inform firmware that RF Button Driver is active (diff) | |
download | linux-5ffa572a431ff3fd6175419656603519fa471c27.tar.xz linux-5ffa572a431ff3fd6175419656603519fa471c27.zip |
platform/x86: acer-wmi: add another KEY_WLAN keycode
Now that we have informed the firmware that the RF Button driver is
active, laptops such as the Acer TravelMate P238-M will generate
a WMI key event with code 0x86 when the Fn+F3 airplane mode key is
pressed.
Add this keycode to the table so that it is converted to an appropriate
input event.
Signed-off-by: Chris Chiu <chiu@endlessm.com>
Signed-off-by: Daniel Drake <drake@endlessm.com>
Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Diffstat (limited to 'drivers/platform/x86/acer-wmi.c')
-rw-r--r-- | drivers/platform/x86/acer-wmi.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/platform/x86/acer-wmi.c b/drivers/platform/x86/acer-wmi.c index 4f633570531a..dac0fbe87460 100644 --- a/drivers/platform/x86/acer-wmi.c +++ b/drivers/platform/x86/acer-wmi.c @@ -128,6 +128,7 @@ static const struct key_entry acer_wmi_keymap[] __initconst = { {KE_KEY, KEY_TOUCHPAD_OFF, {KEY_TOUCHPAD_OFF} }, {KE_IGNORE, 0x83, {KEY_TOUCHPAD_TOGGLE} }, {KE_KEY, 0x85, {KEY_TOUCHPAD_TOGGLE} }, + {KE_KEY, 0x86, {KEY_WLAN} }, {KE_END, 0} }; |