From: Przemo Firszt Date: Fri, 24 Feb 2012 13:47:48 +0000 (+0000) Subject: HID: wacom: set ABS_MISC bit for Intuos4 WL X-Git-Tag: upstream/snapshot3+hdmi~7953^2~1^3~6 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=2c653e6bac85918ae76ed0199f25fb6a2206b92d;p=platform%2Fadaptation%2Frenesas_rcar%2Frenesas_kernel.git HID: wacom: set ABS_MISC bit for Intuos4 WL ABS_MISC has to be set for Intuos4 WL otherwise xorg driver won't use proper protocol and the information about tool id and serial is lost. Signed-off-by: Przemo Firszt Reviewed-by: Chris Bagwell Signed-off-by: Jiri Kosina --- diff --git a/drivers/hid/hid-wacom.c b/drivers/hid/hid-wacom.c index 8b49229..c4a193b 100644 --- a/drivers/hid/hid-wacom.c +++ b/drivers/hid/hid-wacom.c @@ -471,6 +471,7 @@ static int wacom_input_mapped(struct hid_device *hdev, struct hid_input *hi, input_set_abs_params(input, ABS_DISTANCE, 0, 32, 0, 0); break; case USB_DEVICE_ID_WACOM_INTUOS4_BLUETOOTH: + __set_bit(ABS_MISC, input->absbit); input_set_abs_params(input, ABS_X, 0, 40640, 4, 0); input_set_abs_params(input, ABS_Y, 0, 25400, 4, 0); input_set_abs_params(input, ABS_PRESSURE, 0, 2047, 0, 0);