]> git.baikalelectronics.ru Git - kernel.git/commit
HID: hid-input: avoid splitting keyboard, system and consumer controls
authorDmitry Torokhov <dmitry.torokhov@gmail.com>
Thu, 14 Jan 2021 06:24:13 +0000 (22:24 -0800)
committerJiri Kosina <jkosina@suse.cz>
Tue, 2 Feb 2021 10:10:30 +0000 (11:10 +0100)
commitd637a925fecd5a21687afdc69e1a61af7c34cf45
tree85fceb86d4060e4b6a170c9aee2ce2798b627400
parent9b27257df4a176a48fdfa4ed323b747179cb8ea7
HID: hid-input: avoid splitting keyboard, system and consumer controls

A typical USB keyboard usually splits its keys into several reports:

- one for the basic alphanumeric keys, modifier keys, F<n> keys, six pack
  keys and keypad. This report's application is normally listed as
  GenericDesktop.Keyboard
- a GenericDesktop.SystemControl report for the system control keys, such
  as power and sleep
- Consumer.ConsumerControl report for multimedia (forward, rewind,
  play/pause, mute, etc) and other extended keys.
- additional output, vendor specific, and feature reports

Splitting each report into a separate input device is wasteful and even
hurts userspace as it makes it harder to determine the true capabilities
(set of available keys) of a keyboard, so let's adjust application
matching to merge system control and consumer control reports with
keyboard report, if one has already been processed.

Signed-off-by: Dmitry Torokhov <dmitry.torokhov@gmail.com>
Acked-by: Peter Hutterer <peter.hutterer@who-t.net>
Signed-off-by: Jiri Kosina <jkosina@suse.cz>
drivers/hid/hid-input.c