From 021938741187e2f266d65b3b4035aa74b1c76114 Mon Sep 17 00:00:00 2001 From: Jiri Kosina Date: Thu, 3 Aug 2017 11:25:32 +0200 Subject: [PATCH] HID: multitouch: use proper symbolic constant for 0xff310076 application 0xff310076 application has been defined by 4bf26f8b2b293e ("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: 4bf26f8b2b2 ("HID: multitouch: Support Asus T304UA media keys") Signed-off-by: Jiri Kosina --- drivers/hid/hid-multitouch.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/hid/hid-multitouch.c b/drivers/hid/hid-multitouch.c index 6b3de7b01571b..0a8689bb08e9b 100644 --- a/drivers/hid/hid-multitouch.c +++ b/drivers/hid/hid-multitouch.c @@ -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); -- 2.39.5