This is a note to let you know that I've just added the patch titled platform/x86: asus-wmi: Map 0x2a code, Ignore 0x2b and 0x2c events to the 5.10-stable tree which can be found at: http://www.kernel.org/git/?p=linux/kernel/git/stable/stable-queue.git;a=summary The filename of the patch is: platform-x86-asus-wmi-map-0x2a-code-ignore-0x2b-and-0x2c-events.patch and it can be found in the queue-5.10 subdirectory. If you, or anyone else, feels it should not be added to the stable tree, please let <stable@xxxxxxxxxxxxxxx> know about it. >From 235985d1763f7aba92c1c64e5f5aaec26c2c9b18 Mon Sep 17 00:00:00 2001 From: Hans de Goede <hdegoede@xxxxxxxxxx> Date: Tue, 17 Oct 2023 11:07:25 +0200 Subject: platform/x86: asus-wmi: Map 0x2a code, Ignore 0x2b and 0x2c events From: Hans de Goede <hdegoede@xxxxxxxxxx> commit 235985d1763f7aba92c1c64e5f5aaec26c2c9b18 upstream. Newer Asus laptops send the following new WMI event codes when some of the F1 - F12 "media" hotkeys are pressed: 0x2a Screen Capture 0x2b PrintScreen 0x2c CapsLock Map 0x2a to KEY_SELECTIVE_SCREENSHOT mirroring how similar hotkeys are mapped on other laptops. PrintScreem and CapsLock are also reported as normal PS/2 keyboard events, map these event codes to KE_IGNORE to avoid "Unknown key code 0x%x\n" log messages. Reported-by: James John <me@xxxxxxxxxxx> Closes: https://lore.kernel.org/platform-driver-x86/a2c441fe-457e-44cf-a146-0ecd86b037cf@xxxxxxxxxxx/ Closes: https://bbs.archlinux.org/viewtopic.php?pid=2123716 Signed-off-by: Hans de Goede <hdegoede@xxxxxxxxxx> Link: https://lore.kernel.org/r/20231017090725.38163-4-hdegoede@xxxxxxxxxx Signed-off-by: Greg Kroah-Hartman <gregkh@xxxxxxxxxxxxxxxxxxx> --- drivers/platform/x86/asus-nb-wmi.c | 3 +++ 1 file changed, 3 insertions(+) --- a/drivers/platform/x86/asus-nb-wmi.c +++ b/drivers/platform/x86/asus-nb-wmi.c @@ -475,6 +475,9 @@ static void asus_nb_wmi_quirks(struct as static const struct key_entry asus_nb_wmi_keymap[] = { { KE_KEY, ASUS_WMI_BRN_DOWN, { KEY_BRIGHTNESSDOWN } }, { KE_KEY, ASUS_WMI_BRN_UP, { KEY_BRIGHTNESSUP } }, + { KE_KEY, 0x2a, { KEY_SELECTIVE_SCREENSHOT } }, + { KE_IGNORE, 0x2b, }, /* PrintScreen (also send via PS/2) on newer models */ + { KE_IGNORE, 0x2c, }, /* CapsLock (also send via PS/2) on newer models */ { KE_KEY, 0x30, { KEY_VOLUMEUP } }, { KE_KEY, 0x31, { KEY_VOLUMEDOWN } }, { KE_KEY, 0x32, { KEY_MUTE } }, Patches currently in stable-queue which might be from hdegoede@xxxxxxxxxx are queue-5.10/acpi-resource-skip-irq-override-on-asus-expertbook-b.patch-28713 queue-5.10/drm-connector-add-drm_connector_find_by_fwnode-funct.patch queue-5.10/drm-connector-add-a-fwnode-pointer-to-drm_connector-.patch queue-5.10/acpi-resource-add-asus-expertbook-b2502-to-asus-quir.patch queue-5.10/platform-x86-touchscreen_dmi-add-info-for-the-positi.patch queue-5.10/platform-x86-asus-wmi-map-0x2a-code-ignore-0x2b-and-0x2c-events.patch queue-5.10/input-goodix-ensure-int-gpio-is-in-input-for-gpio_count-1-gpio_int_idx-0-case.patch queue-5.10/platform-x86-hp-wmi-mark-driver-struct-with-__refdat.patch queue-5.10/hid-logitech-hidpp-fix-kernel-crash-on-receiver-usb-disconnect.patch queue-5.10/usb-typec-altmodes-displayport-notify-drm-subsys-of-.patch queue-5.10/platform-x86-asus-wmi-change-asus_wmi_brn_down-code-from-0x20-to-0x2e.patch queue-5.10/drm-connector-give-connector-sysfs-devices-there-own.patch queue-5.10/drm-panel-orientation-quirks-add-quirk-for-one-mix-2.patch queue-5.10/drm-connector-add-support-for-out-of-band-hotplug-no.patch