Commit 39bbf402 authored by Jiri Kosina's avatar Jiri Kosina

HID: multitouch: use proper symbolic constant for 0xff310076 application

0xff310076 application has been defined by 957b8dff ("HID: multitouch:
Support Asus T304UA media keys") as a vendor-specific application with
symbolic constant HID_VD_ASUS_CUSTOM_MEDIA_KEYS, so let's make use of
it.

Fixes: 957b8dff ("HID: multitouch: Support Asus T304UA media keys")
Signed-off-by: default avatarJiri Kosina <jkosina@suse.cz>
parent 957b8dff
......@@ -941,7 +941,7 @@ static int mt_input_mapping(struct hid_device *hdev, struct hid_input *hi,
* touchpad report descriptor. We need to treat these as an array to
* map usages to input keys.
*/
if (field->application == 0xff310076 &&
if (field->application == HID_VD_ASUS_CUSTOM_MEDIA_KEYS &&
td->mtclass.quirks & MT_QUIRK_ASUS_CUSTOM_UP &&
(usage->hid & HID_USAGE_PAGE) == HID_UP_CUSTOM) {
set_bit(EV_REP, hi->input->evbit);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment