[PATCH 06/11] HID: wacom: Reset stylus buttons - Intuos4 WL

Peter Hutterer peter.hutterer at who-t.net
Wed May 30 05:13:22 UTC 2012


From: Przemo Firszt <przemo at firszt.eu>

Stylus buttons have to be resetted when going out-of-prox.

Signed-off-by: Przemo Firszt <przemo at firszt.eu>
Reviewed-by: Jason Gerecke <killertofu at gmail.com>
Signed-off-by: Jiri Kosina <jkosina at suse.cz>
(cherry picked from commit 693f45bb2d6ff5bf8fb3b69ff904b44ef8cffd8d)
---
 drivers/hid/hid-wacom.c |    2 ++
 1 file changed, 2 insertions(+)

diff --git a/drivers/hid/hid-wacom.c b/drivers/hid/hid-wacom.c
index 58aedbc..f9af474 100644
--- a/drivers/hid/hid-wacom.c
+++ b/drivers/hid/hid-wacom.c
@@ -352,6 +352,8 @@ static void wacom_i4_parse_pen_report(struct wacom_data *wdata,
 	case 0x80: /* Out of proximity report */
 		input_report_key(input, BTN_TOUCH, 0);
 		input_report_abs(input, ABS_PRESSURE, 0);
+		input_report_key(input, BTN_STYLUS, 0);
+		input_report_key(input, BTN_STYLUS2, 0);
 		input_report_key(input, wdata->tool, 0);
 		input_report_abs(input, ABS_MISC, 0);
 		input_event(input, EV_MSC, MSC_SERIAL, wdata->serial);
-- 
1.7.10.1



More information about the kernel mailing list