From patchwork Fri Aug 31 21:47:56 2018 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Yussuf Khalil X-Patchwork-Id: 10584495 Return-Path: Received: from mail.wl.linuxfoundation.org (pdx-wl-mail.web.codeaurora.org [172.30.200.125]) by pdx-korg-patchwork-2.web.codeaurora.org (Postfix) with ESMTP id D202514E1 for ; Fri, 31 Aug 2018 21:58:09 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id BFC9F2ADEE for ; Fri, 31 Aug 2018 21:58:09 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id B08762AE2B; Fri, 31 Aug 2018 21:58:09 +0000 (UTC) X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on pdx-wl-mail.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-7.9 required=2.0 tests=BAYES_00,MAILING_LIST_MULTI, RCVD_IN_DNSWL_HI autolearn=ham version=3.3.1 Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 5617D2ADEE for ; Fri, 31 Aug 2018 21:58:09 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1727261AbeIACHe (ORCPT ); Fri, 31 Aug 2018 22:07:34 -0400 Received: from saul.pp3345.net ([163.172.111.124]:40542 "EHLO saul.pp3345.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1727232AbeIACHe (ORCPT ); Fri, 31 Aug 2018 22:07:34 -0400 X-Greylist: delayed 490 seconds by postgrey-1.27 at vger.kernel.org; Fri, 31 Aug 2018 22:07:33 EDT Received: from pp3345-Laptop.pp3345.lan (HSI-KBW-109-193-229-141.hsi7.kabel-badenwuerttemberg.de [109.193.229.141]) (using TLSv1.2 with cipher DHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) (Authenticated sender: dev@pp3345.net) by saul.pp3345.net (Postfix) with ESMTPSA id 2FEB89A333D; Fri, 31 Aug 2018 23:49:56 +0200 (CEST) From: Yussuf Khalil To: Dmitry Torokhov , linux-input@vger.kernel.org Cc: Yussuf Khalil Subject: [PATCH] Input: synaptics - enable RMI on ThinkPad T560 Date: Fri, 31 Aug 2018 23:47:56 +0200 Message-Id: <20180831214756.15129-1-dev@pp3345.net> X-Mailer: git-send-email 2.17.1 Sender: linux-input-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-input@vger.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP Before commit 7fd6d98b89f3 ("i2c: i801: Allow ACPI AML access I/O ports not reserved for SMBus"), enabling RMI on the T560 would cause the touchpad to stop working after resuming from suspend. Now that this issue is fixed, RMI can be enabled safely and works fine. Signed-off-by: Yussuf Khalil Reviewed-by: Benjamin Tissoires --- 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 55d33500d55e..8f0e8ba63bbc 100644 --- a/drivers/input/mouse/synaptics.c +++ b/drivers/input/mouse/synaptics.c @@ -172,6 +172,7 @@ static const char * const smbus_pnp_ids[] = { "LEN0048", /* X1 Carbon 3 */ "LEN0046", /* X250 */ "LEN004a", /* W541 */ + "LEN005e", /* T560 */ "LEN0071", /* T480 */ "LEN0072", /* X1 Carbon Gen 5 (2017) - Elan/ALPS trackpoint */ "LEN0073", /* X1 Carbon G5 (Elantech) */