提交 32db737f 编写于 作者: P Przemo Firszt 提交者: Jiri Kosina

HID: wacom: fix proximity tool release

Don't zero the current tool before reporting its release to the input
subsystem.
Signed-off-by: NAristeu Rozanski <aris@redhat.com>
Tested-by: NPrzemo Firszt <przemo@firszt.eu>
Signed-off-by: NJiri Kosina <jkosina@suse.cz>
上级 217c8b2b
......@@ -322,10 +322,10 @@ static void wacom_i4_parse_pen_report(struct wacom_data *wdata,
switch (data[1]) {
case 0x80: /* Out of proximity report */
wdata->tool = 0;
input_report_key(input, BTN_TOUCH, 0);
input_report_abs(input, ABS_PRESSURE, 0);
input_report_key(input, wdata->tool, 0);
wdata->tool = 0;
input_sync(input);
break;
case 0xC2: /* Tool report */
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册