Commit 5c6248411639e2b4e7f167632f30f5f3a7aa105f

Authored by Eric Piel
Committed by Linus Torvalds
1 parent 2a80a3783d

HP-WMI: additional keycode (or typo)

On my HP 2510, pressing the (i) button generates an unknown keycode:
0x213b. So here is a patch adding support for it. However, as it seems
there is already support for a similar button connected to 0x231b as
keycode, I wonder if it could be a typo in the driver?

Signed-off-by: Eric Piel <eric.piel@tremplin-utc.net>
Cc: Matthew Garrett <mjg@redhat.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>

Showing 1 changed file with 1 additions and 0 deletions Side-by-side Diff

drivers/misc/hp-wmi.c
... ... @@ -82,6 +82,7 @@
82 82 {KE_KEY, 0x03, KEY_BRIGHTNESSDOWN},
83 83 {KE_KEY, 0x20e6, KEY_PROG1},
84 84 {KE_KEY, 0x2142, KEY_MEDIA},
  85 + {KE_KEY, 0x213b, KEY_INFO},
85 86 {KE_KEY, 0x231b, KEY_HELP},
86 87 {KE_END, 0}
87 88 };