HID: multitouch: use proper symbolic constant for 0xff310076 application
0xff310076 application has been defined by957b8dffa4
("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:957b8dffa4
("HID: multitouch: Support Asus T304UA media keys") Signed-off-by: Jiri Kosina <jkosina@suse.cz>
This commit is contained in:
parent
957b8dffa4
commit
39bbf40227
|
@ -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);
|
||||
|
|
Loading…
Reference in New Issue