From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1755133AbbGUONR (ORCPT ); Tue, 21 Jul 2015 10:13:17 -0400 Received: from mx1.redhat.com ([209.132.183.28]:57386 "EHLO mx1.redhat.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1754983AbbGUONP (ORCPT ); Tue, 21 Jul 2015 10:13:15 -0400 Date: Tue, 21 Jul 2015 10:13:12 -0400 From: Benjamin Tissoires To: Jiri Kosina Cc: Hans de Goede , Dmitry Torokhov , linux-input@vger.kernel.org, linux-kernel@vger.kernel.org, Vojtech Pavlik Subject: Re: [PATCH] Input: synaptics: dump ext10 capabilities as well Message-ID: <20150721141312.GA6121@mail.corp.redhat.com> References: MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline In-Reply-To: Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Jul 21 2015 or thereabouts, Jiri Kosina wrote: > Make extended capabilities obtained through $10 query also available in > touchpad identification. > > Signed-off-by: Jiri Kosina > --- Works for me. Reviewed-by: Benjamin Tissoires Cheers, Benjamin > drivers/input/mouse/synaptics.c | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) > > diff --git a/drivers/input/mouse/synaptics.c b/drivers/input/mouse/synaptics.c > index 3a32caf..6025eb4 100644 > --- a/drivers/input/mouse/synaptics.c > +++ b/drivers/input/mouse/synaptics.c > @@ -1484,12 +1484,12 @@ static int __synaptics_init(struct psmouse *psmouse, bool absolute_mode) > priv->pkt_type = SYN_MODEL_NEWABS(priv->model_id) ? SYN_NEWABS : SYN_OLDABS; > > psmouse_info(psmouse, > - "Touchpad model: %ld, fw: %ld.%ld, id: %#lx, caps: %#lx/%#lx/%#lx, board id: %lu, fw id: %lu\n", > + "Touchpad model: %ld, fw: %ld.%ld, id: %#lx, caps: %#lx/%#lx/%#lx/%#lx, board id: %lu, fw id: %lu\n", > SYN_ID_MODEL(priv->identity), > SYN_ID_MAJOR(priv->identity), SYN_ID_MINOR(priv->identity), > priv->model_id, > priv->capabilities, priv->ext_cap, priv->ext_cap_0c, > - priv->board_id, priv->firmware_id); > + priv->ext_cap_10, priv->board_id, priv->firmware_id); > > set_input_params(psmouse, priv); > > -- > Jiri Kosina > SUSE Labs