Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1755322Ab2BUN0E (ORCPT ); Tue, 21 Feb 2012 08:26:04 -0500 Received: from cantor2.suse.de ([195.135.220.15]:35465 "EHLO mx2.suse.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1755265Ab2BUN0B (ORCPT ); Tue, 21 Feb 2012 08:26:01 -0500 Date: Tue, 21 Feb 2012 14:25:59 +0100 (CET) From: Jiri Kosina To: Przemo Firszt Cc: aris@redhat.com, pinglinux@gmail.com, linuxwacom-devel@lists.sourceforge.net, linux-input@vger.kernel.org, linux-kernel@vger.kernel.org Subject: Re: [PATCH] HID: wacom: fix proximity tool release In-Reply-To: <1329682829-24347-1-git-send-email-przemo@firszt.eu> Message-ID: References: <1329682829-24347-1-git-send-email-przemo@firszt.eu> User-Agent: Alpine 2.00 (LNX 1167 2008-08-23) MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1267 Lines: 41 On Sun, 19 Feb 2012, Przemo Firszt wrote: > Don't zero the current tool before reporting its release to the input > subsystem. > > Signed-off-by: Aristeu Rozanski > Tested-by: Przemo Firszt > --- > drivers/hid/hid-wacom.c | 2 +- > 1 files changed, 1 insertions(+), 1 deletions(-) > > diff --git a/drivers/hid/hid-wacom.c b/drivers/hid/hid-wacom.c > index 0621047..696b907 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, > > 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 */ I have put this into my upstream-fixes branch. I think this should go into 3.3 still. Thanks, -- Jiri Kosina SUSE Labs -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/