HID: wacom: fix proximity tool release
authorPrzemo Firszt <przemo@firszt.eu>
Sun, 19 Feb 2012 20:20:29 +0000 (20:20 +0000)
committerJiri Kosina <jkosina@suse.cz>
Tue, 21 Feb 2012 13:23:26 +0000 (14:23 +0100)
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>
drivers/hid/hid-wacom.c

index acab74cde72730dd8660c6d7a8d64a8d7ba75451..8b49229241424edf53522dc391ebe612073e6436 100644 (file)
@@ -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 */