aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/hid
diff options
context:
space:
mode:
authorPrzemo Firszt <przemo@firszt.eu>2012-02-19 15:20:29 -0500
committerJiri Kosina <jkosina@suse.cz>2012-02-21 08:23:26 -0500
commit32db737fb2bfe9013362c9dc2c7af998edc758be (patch)
tree72c71e611b74f85bf9d82d053e2b034ed29a6b77 /drivers/hid
parent217c8b2b1978aa4a02ce040a99c59ed3b6418fe5 (diff)
HID: wacom: fix proximity tool release
Don't zero the current tool before reporting its release to the input subsystem. Signed-off-by: Aristeu Rozanski <aris@redhat.com> Tested-by: Przemo Firszt <przemo@firszt.eu> Signed-off-by: Jiri Kosina <jkosina@suse.cz>
Diffstat (limited to 'drivers/hid')
-rw-r--r--drivers/hid/hid-wacom.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/hid/hid-wacom.c b/drivers/hid/hid-wacom.c
index acab74cde727..8b4922924142 100644
--- a/drivers/hid/hid-wacom.c
+++ b/drivers/hid/hid-wacom.c
@@ -322,10 +322,10 @@ static void wacom_i4_parse_pen_report(struct wacom_data *wdata,
322 322
323 switch (data[1]) { 323 switch (data[1]) {
324 case 0x80: /* Out of proximity report */ 324 case 0x80: /* Out of proximity report */
325 wdata->tool = 0;
326 input_report_key(input, BTN_TOUCH, 0); 325 input_report_key(input, BTN_TOUCH, 0);
327 input_report_abs(input, ABS_PRESSURE, 0); 326 input_report_abs(input, ABS_PRESSURE, 0);
328 input_report_key(input, wdata->tool, 0); 327 input_report_key(input, wdata->tool, 0);
328 wdata->tool = 0;
329 input_sync(input); 329 input_sync(input);
330 break; 330 break;
331 case 0xC2: /* Tool report */ 331 case 0xC2: /* Tool report */