diff options
author | Hans de Goede <hdegoede@redhat.com> | 2014-01-29 17:57:41 +0100 |
---|---|---|
committer | Jiri Slaby <jslaby@suse.cz> | 2015-07-30 14:10:56 +0200 |
commit | d45acc42507139637a1636eef9c64f6d7a38fd4c (patch) | |
tree | 0434fac53a0ef1623fb2e742e421e164f50841c2 | |
parent | ae432ba6bc105f7279ed729ae47a8c9e42ac6c22 (diff) |
HID: Add some missing HUT mappings
commit 5820e4d4ae17c0994c93d0537bd1a184267f3cae upstream.
Add mapping for "AL Next Task/Application", "AL Previous Task/Application"
and "AL File Browser" buttons, as found on the Microsoft Office keyboard.
Note that there already is a mapping for "AL Local Machine Browser" to
KEY_FILE. Unless we ever encounter a device with both that should not be
a problem.
Signed-off-by: Hans de Goede <hdegoede@redhat.com>
Signed-off-by: Jiri Kosina <jkosina@suse.cz>
Cc: Oliver Neukum <ONeukum@suse.com>
Signed-off-by: Jiri Slaby <jslaby@suse.cz>
-rw-r--r-- | drivers/hid/hid-input.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/drivers/hid/hid-input.c b/drivers/hid/hid-input.c index 9dcccbde65fb..07483f99f854 100644 --- a/drivers/hid/hid-input.c +++ b/drivers/hid/hid-input.c @@ -795,10 +795,13 @@ static void hidinput_configure_usage(struct hid_input *hidinput, struct hid_fiel case 0x199: map_key_clear(KEY_CHAT); break; case 0x19c: map_key_clear(KEY_LOGOFF); break; case 0x19e: map_key_clear(KEY_COFFEE); break; + case 0x1a3: map_key_clear(KEY_NEXT); break; + case 0x1a4: map_key_clear(KEY_PREVIOUS); break; case 0x1a6: map_key_clear(KEY_HELP); break; case 0x1a7: map_key_clear(KEY_DOCUMENTS); break; case 0x1ab: map_key_clear(KEY_SPELLCHECK); break; case 0x1ae: map_key_clear(KEY_KEYBOARD); break; + case 0x1b4: map_key_clear(KEY_FILE); break; case 0x1b6: map_key_clear(KEY_IMAGES); break; case 0x1b7: map_key_clear(KEY_AUDIO); break; case 0x1b8: map_key_clear(KEY_VIDEO); break; |