]> git.ipfire.org Git - thirdparty/kernel/stable.git/commitdiff
platform/x86: ideapad-laptop: add missing Ideapad Pro 5 fn keys
authorRenato Caldas <renato@calgera.com>
Sat, 2 Nov 2024 18:31:16 +0000 (18:31 +0000)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Fri, 27 Jun 2025 10:07:40 +0000 (11:07 +0100)
commit 36e66be874a7ea9d28fb9757629899a8449b8748 upstream.

The scancodes for the Mic Mute and Airplane keys on the Ideapad Pro 5
(14AHP9 at least, probably the other variants too) are different and
were not being picked up by the driver. This adds them to the keymap.

Apart from what is already supported, the remaining fn keys are
unfortunately producing windows-specific key-combos.

Signed-off-by: Renato Caldas <renato@calgera.com>
Link: https://lore.kernel.org/r/20241102183116.30142-1-renato@calgera.com
Reviewed-by: Hans de Goede <hdegoede@redhat.com>
Signed-off-by: Hans de Goede <hdegoede@redhat.com>
Signed-off-by: WangYuli <wangyuli@uniontech.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/platform/x86/ideapad-laptop.c

index de03b8889e9d31cb5f7bf46ba80a418874572e51..6674ad529ae93db321dc3b51e8f508148fc25e29 100644 (file)
@@ -1191,6 +1191,9 @@ static const struct key_entry ideapad_keymap[] = {
        { KE_KEY,       0x27 | IDEAPAD_WMI_KEY, { KEY_HELP } },
        /* Refresh Rate Toggle */
        { KE_KEY,       0x0a | IDEAPAD_WMI_KEY, { KEY_DISPLAYTOGGLE } },
+       /* Specific to some newer models */
+       { KE_KEY,       0x3e | IDEAPAD_WMI_KEY, { KEY_MICMUTE } },
+       { KE_KEY,       0x3f | IDEAPAD_WMI_KEY, { KEY_RFKILL } },
 
        { KE_END },
 };