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=-13.5 required=3.0 tests=DKIMWL_WL_HIGH,DKIM_SIGNED, DKIM_VALID,HEADER_FROM_DIFFERENT_DOMAINS,INCLUDES_PATCH,MAILING_LIST_MULTI, SIGNED_OFF_BY,SPF_PASS,URIBL_BLOCKED,USER_AGENT_GIT autolearn=unavailable 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 CB36FC43444 for ; Fri, 11 Jan 2019 15:04:36 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 951672084C for ; Fri, 11 Jan 2019 15:04:36 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1547219076; bh=z4LqGmBoy30rZQLy0uaq+xAE8xqapRA4NAxvKhA+8yo=; h=From:To:Cc:Subject:Date:In-Reply-To:References:List-ID:From; b=LJRGPSMTeyABjhKb5DaQOeR2iF+btyV0Z2s6qep4nT6/r4AjnGSk1Rw52ZxNVBd+b XtOtQkzhhKwo/3dMRZNBRkQdLqeTrq8TWw+iyObipe4Xj/r4J/UHHZOWmGGhbhyJgp tJ9Y3VC9QxPTjRiY59ogilPDbOea7HPoDl6M2Tns= Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S2388955AbfAKOaa (ORCPT ); Fri, 11 Jan 2019 09:30:30 -0500 Received: from mail.kernel.org ([198.145.29.99]:49754 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S2388925AbfAKOa0 (ORCPT ); Fri, 11 Jan 2019 09:30:26 -0500 Received: from localhost (5356596B.cm-6-7b.dynamic.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 BFBBD2063F; Fri, 11 Jan 2019 14:30:25 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1547217026; bh=z4LqGmBoy30rZQLy0uaq+xAE8xqapRA4NAxvKhA+8yo=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=DQm7ODKNaxRGDWiLduxIlqZq9zjXQsqmQ8k2yKCSu9WBN7DnncRoEDP0exwFLc1JP T2mlEJv+GdT6PeG46sUtMSqFjwl8rpupe2ELwTB4LgYyuDOYFFBeeOUj4E3GGMsjtZ cVFoMIiDlgUN8+IwJz1oJJTbesJ9D8qV/mGgNdhw= From: Greg Kroah-Hartman To: linux-kernel@vger.kernel.org Cc: Greg Kroah-Hartman , stable@vger.kernel.org, Benjamin Tissoires , Yussuf Khalil , Dmitry Torokhov , Sasha Levin Subject: [PATCH 4.14 015/105] Input: synaptics - enable RMI on ThinkPad T560 Date: Fri, 11 Jan 2019 15:13:46 +0100 Message-Id: <20190111131104.471698079@linuxfoundation.org> X-Mailer: git-send-email 2.20.1 In-Reply-To: <20190111131102.899065735@linuxfoundation.org> References: <20190111131102.899065735@linuxfoundation.org> User-Agent: quilt/0.65 X-stable: review X-Patchwork-Hint: ignore MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Sender: stable-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: stable@vger.kernel.org 4.14-stable review patch. If anyone has any objections, please let me know. ------------------ [ Upstream commit ca5047286c9c93a01e1f471d00a6019536992954 ] 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. Reviewed-by: Benjamin Tissoires Signed-off-by: Yussuf Khalil 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 54f0d037b5b6..515a0b0d48bf 100644 --- a/drivers/input/mouse/synaptics.c +++ b/drivers/input/mouse/synaptics.c @@ -171,6 +171,7 @@ static const char * const smbus_pnp_ids[] = { "LEN0046", /* X250 */ "LEN004a", /* W541 */ "LEN005b", /* P50 */ + "LEN005e", /* T560 */ "LEN0071", /* T480 */ "LEN0072", /* X1 Carbon Gen 5 (2017) - Elan/ALPS trackpoint */ "LEN0073", /* X1 Carbon G5 (Elantech) */ -- 2.19.1