From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-9.8 required=3.0 tests=DKIMWL_WL_HIGH,DKIM_SIGNED, DKIM_VALID,HEADER_FROM_DIFFERENT_DOMAINS,INCLUDES_PATCH,MAILING_LIST_MULTI, SIGNED_OFF_BY,SPF_HELO_NONE,SPF_PASS,USER_AGENT_GIT autolearn=ham autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 0BC37C433E1 for ; Fri, 19 Jun 2020 14:54:00 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id D0A482184D for ; Fri, 19 Jun 2020 14:53:59 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1592578439; bh=x7c/AxKWn05LnkjEH4TGTp18ZTJFYDtquGB/20661eo=; h=From:To:Cc:Subject:Date:In-Reply-To:References:List-ID:From; b=nsqGzDbTWCGaVccR+r9myxAyMWyLtt72Jz71rBP41vVtzFRb9N0z3tb2HP4bLjkPC 6DYQXFgepMcTylkhooHomasVVzW3mx8+vPOZt/UG5O+WdzmP6JB65L2f5T3KjYe0Zg rv1LeV1Z5WaKUjjanHl8GdeHzqtKczI8nUGdwjEI= Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S2389793AbgFSOx6 (ORCPT ); Fri, 19 Jun 2020 10:53:58 -0400 Received: from mail.kernel.org ([198.145.29.99]:48210 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S2389764AbgFSOxr (ORCPT ); Fri, 19 Jun 2020 10:53:47 -0400 Received: from localhost (83-86-89-107.cable.dynamic.v4.ziggo.nl [83.86.89.107]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPSA id 48341217D8; Fri, 19 Jun 2020 14:53:46 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1592578426; bh=x7c/AxKWn05LnkjEH4TGTp18ZTJFYDtquGB/20661eo=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=1Ovp2dM60Nl/7oO2/XwQuPQEIUf/ggvcPpr7o2k6HQh6ZOIF/X4hs6EUWUiNmfXLf rOvcbZM3xi4+Zlbb9E+InoAq/0/KredIwX4QSajIwu0oGvM6dctQYFcvxeQlkVrJbx 8gNYKiZgGWLtpf6BSgi2IBYyrgAJzjwzC1zadaSY= From: Greg Kroah-Hartman To: linux-kernel@vger.kernel.org Cc: Greg Kroah-Hartman , stable@vger.kernel.org, Dennis Kadioglu , Dmitry Torokhov , Sasha Levin Subject: [PATCH 4.19 018/267] Input: synaptics - add a second working PNP_ID for Lenovo T470s Date: Fri, 19 Jun 2020 16:30:03 +0200 Message-Id: <20200619141649.744948831@linuxfoundation.org> X-Mailer: git-send-email 2.27.0 In-Reply-To: <20200619141648.840376470@linuxfoundation.org> References: <20200619141648.840376470@linuxfoundation.org> User-Agent: quilt/0.66 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org From: Dennis Kadioglu [ Upstream commit 642aa86eaf8f1e6fe894f20fd7f12f0db52ee03c ] The Lenovo Thinkpad T470s I own has a different touchpad with "LEN007a" instead of the already included PNP ID "LEN006c". However, my touchpad seems to work well without any problems using RMI. So this patch adds the other PNP ID. Signed-off-by: Dennis Kadioglu Link: https://lore.kernel.org/r/ff770543cd53ae818363c0fe86477965@mail.eclipso.de Signed-off-by: Dmitry Torokhov Signed-off-by: Sasha Levin --- drivers/input/mouse/synaptics.c | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/input/mouse/synaptics.c b/drivers/input/mouse/synaptics.c index d9042d0566ab..671e018eb363 100644 --- a/drivers/input/mouse/synaptics.c +++ b/drivers/input/mouse/synaptics.c @@ -173,6 +173,7 @@ static const char * const smbus_pnp_ids[] = { "LEN005b", /* P50 */ "LEN005e", /* T560 */ "LEN006c", /* T470s */ + "LEN007a", /* T470s */ "LEN0071", /* T480 */ "LEN0072", /* X1 Carbon Gen 5 (2017) - Elan/ALPS trackpoint */ "LEN0073", /* X1 Carbon G5 (Elantech) */ -- 2.25.1