From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S932267AbcKIBDi (ORCPT ); Tue, 8 Nov 2016 20:03:38 -0500 Received: from mail-pf0-f194.google.com ([209.85.192.194]:36010 "EHLO mail-pf0-f194.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751577AbcKIBDg (ORCPT ); Tue, 8 Nov 2016 20:03:36 -0500 Date: Tue, 8 Nov 2016 17:03:33 -0800 From: Dmitry Torokhov To: Benjamin Tissoires Cc: Andrew Duggan , Lyude Paul , Christopher Heiny , Nick Dyer , Bjorn Andersson , Dennis Wassenberg , linux-kernel@vger.kernel.org, linux-input@vger.kernel.org Subject: Re: [PATCH v3 06/18] Input: synaptics-rmi4 - Set the ABS_MT_TOOL_TYPE bit to report tool type Message-ID: <20161109010333.GK8719@dtor-ws> References: <1476373872-18027-1-git-send-email-benjamin.tissoires@redhat.com> <1476373872-18027-7-git-send-email-benjamin.tissoires@redhat.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1476373872-18027-7-git-send-email-benjamin.tissoires@redhat.com> User-Agent: Mutt/1.5.21 (2010-09-15) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Thu, Oct 13, 2016 at 05:51:00PM +0200, Benjamin Tissoires wrote: > From: Andrew Duggan > > The rmi4 2D sensor functions report the tool type via > input_mt_report_slot_state(), but the abs parameter bit has not been > set so the tool type is not reported to userspace. This patch set > the ABS_MT_TOOL_TYPE bit. > > Signed-off-by: Andrew Duggan > Signed-off-by: Benjamin Tissoires Applied, thank you. > > --- > > new in v3 > --- > drivers/input/rmi4/rmi_2d_sensor.c | 2 ++ > 1 file changed, 2 insertions(+) > > diff --git a/drivers/input/rmi4/rmi_2d_sensor.c b/drivers/input/rmi4/rmi_2d_sensor.c > index e97bd7f..0747890 100644 > --- a/drivers/input/rmi4/rmi_2d_sensor.c > +++ b/drivers/input/rmi4/rmi_2d_sensor.c > @@ -181,6 +181,8 @@ static void rmi_2d_sensor_set_input_params(struct rmi_2d_sensor *sensor) > input_set_abs_params(input, ABS_MT_TOUCH_MAJOR, 0, 0x0f, 0, 0); > input_set_abs_params(input, ABS_MT_TOUCH_MINOR, 0, 0x0f, 0, 0); > input_set_abs_params(input, ABS_MT_ORIENTATION, 0, 1, 0, 0); > + input_set_abs_params(input, ABS_MT_TOOL_TYPE, 0, MT_TOOL_MAX, > + 0, 0); > > if (sensor->sensor_type == rmi_sensor_touchpad) > input_flags = INPUT_MT_POINTER; > -- > 2.7.4 > -- Dmitry