Don't zero the current tool before reporting its release to the input
subsystem.

Signed-off-by: Aristeu Rozanski <a...@redhat.com>

--- linus-2.6.orig/drivers/hid/hid-wacom.c      2012-02-01 12:04:39.660958537 
-0500
+++ linus-2.6/drivers/hid/hid-wacom.c   2012-02-01 12:05:12.205959440 -0500
@@ -322,10 +322,10 @@ static void wacom_i4_parse_pen_report(st
 
        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 */

------------------------------------------------------------------------------
Keep Your Developer Skills Current with LearnDevNow!
The most comprehensive online learning library for Microsoft developers
is just $99.99! Visual Studio, SharePoint, SQL - plus HTML5, CSS3, MVC3,
Metro Style Apps, more. Free future releases when you subscribe now!
http://p.sf.net/sfu/learndevnow-d2d
_______________________________________________
Linuxwacom-devel mailing list
Linuxwacom-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/linuxwacom-devel

Reply via email to