diff options
author | Xiaolei Yu <dreifachstein@gmail.com> | 2017-03-25 14:04:58 +0800 |
---|---|---|
committer | Jiri Kosina <jkosina@suse.cz> | 2017-03-30 11:07:03 +0200 |
commit | 959d973e9890150342df76160d966ab1270208df (patch) | |
tree | 832122bf94ff5c287b714b9be45df2d2e3e71da9 /drivers/hid | |
parent | 52150c78270db56ef5c0de0bf9d13d1d437d1236 (diff) | |
download | linux-959d973e9890150342df76160d966ab1270208df.tar.bz2 |
HID: add two missing usages for digitizer
They are part of HUTRR34 for multi-touch digitizers:
0x0E Device configuration CA 16.7
0x23 Device settings CL 16.7
Signed-off-by: Xiaolei Yu <dreifachstein@gmail.com>
Signed-off-by: Jiri Kosina <jkosina@suse.cz>
Diffstat (limited to 'drivers/hid')
-rw-r--r-- | drivers/hid/hid-debug.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/hid/hid-debug.c b/drivers/hid/hid-debug.c index acfb522a432a..5a0061c0ee87 100644 --- a/drivers/hid/hid-debug.c +++ b/drivers/hid/hid-debug.c @@ -140,9 +140,11 @@ static const struct hid_usage_entry hid_usage_table[] = { {0, 0x03, "LightPen"}, {0, 0x04, "TouchScreen"}, {0, 0x05, "TouchPad"}, + {0, 0x0e, "DeviceConfiguration"}, {0, 0x20, "Stylus"}, {0, 0x21, "Puck"}, {0, 0x22, "Finger"}, + {0, 0x23, "DeviceSettings"}, {0, 0x30, "TipPressure"}, {0, 0x31, "BarrelPressure"}, {0, 0x32, "InRange"}, |