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=-10.1 required=3.0 tests=DKIMWL_WL_HIGH,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,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 C7E59C432C3 for ; Fri, 22 Nov 2019 19:53:45 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 8D24B20704 for ; Fri, 22 Nov 2019 19:53:45 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1574452425; bh=p9dduV/SfO6VK/Wj1E1+PzJhUj70IKevY3pdThcKypY=; h=From:To:Cc:Subject:Date:In-Reply-To:References:List-ID:From; b=s+OZBnD67cHZVlWllOpfagOi1dHB1DcysRPof0YydOzh5GFi+HnruYOJ4hETheTSQ yqvOZw58E07+spSZcatlY+Lj803kor26lsBPGO3Xjahr9sR3zps5nTKWdCJZmEUDmi 6swxe+kexocKnEotkb/MVY7MI/BWot02WAt0540Q= Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1727887AbfKVTxo (ORCPT ); Fri, 22 Nov 2019 14:53:44 -0500 Received: from mail.kernel.org ([198.145.29.99]:49214 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1727417AbfKVTt3 (ORCPT ); Fri, 22 Nov 2019 14:49:29 -0500 Received: from sasha-vm.mshome.net (c-73-47-72-35.hsd1.nh.comcast.net [73.47.72.35]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPSA id 0CA462075B; Fri, 22 Nov 2019 19:49:27 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1574452168; bh=p9dduV/SfO6VK/Wj1E1+PzJhUj70IKevY3pdThcKypY=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=Mm+RifkNfby/xkg9lSkr/GFiqAz+WNcbo0Y5hjHP8HueFB9y6dRPdR+HJVi9zu7Ch 6Y6lMr+9k+E+g/CB+0wwYMGe9fK8dz+2z6VjTorTdiYYg8eHzy+rfkhwcwdMbFEMVz Ep/D1vh6yW4B1BOVQXwOc/pK5eu1FHMPtoZ8TUbY= From: Sasha Levin To: linux-kernel@vger.kernel.org, stable@vger.kernel.org Cc: Lyude Paul , Dmitry Torokhov , Sasha Levin , linux-input@vger.kernel.org Subject: [PATCH AUTOSEL 4.19 24/25] Input: synaptics - enable RMI mode for X1 Extreme 2nd Generation Date: Fri, 22 Nov 2019 14:48:57 -0500 Message-Id: <20191122194859.24508-24-sashal@kernel.org> X-Mailer: git-send-email 2.20.1 In-Reply-To: <20191122194859.24508-1-sashal@kernel.org> References: <20191122194859.24508-1-sashal@kernel.org> MIME-Version: 1.0 X-stable: review X-Patchwork-Hint: Ignore Content-Transfer-Encoding: 8bit Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org From: Lyude Paul [ Upstream commit 768ea88bcb235ac3a92754bf82afcd3f12200bcc ] Just got one of these for debugging some unrelated issues, and noticed that Lenovo seems to have gone back to using RMI4 over smbus with Synaptics touchpads on some of their new systems, particularly this one. So, let's enable RMI mode for the X1 Extreme 2nd Generation. Signed-off-by: Lyude Paul Link: https://lore.kernel.org/r/20191115221814.31903-1-lyude@redhat.com 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 06cebde2422ea..afdb9947d8af9 100644 --- a/drivers/input/mouse/synaptics.c +++ b/drivers/input/mouse/synaptics.c @@ -180,6 +180,7 @@ static const char * const smbus_pnp_ids[] = { "LEN0096", /* X280 */ "LEN0097", /* X280 -> ALPS trackpoint */ "LEN009b", /* T580 */ + "LEN0402", /* X1 Extreme 2nd Generation */ "LEN200f", /* T450s */ "LEN2054", /* E480 */ "LEN2055", /* E580 */ -- 2.20.1