From patchwork Thu Apr 18 20:09:07 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: Felix Haecker X-Patchwork-Id: 10907945 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 90E5E13B5 for ; Thu, 18 Apr 2019 20:14:17 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 7BF8928CE4 for ; Thu, 18 Apr 2019 20:14:17 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id 6D91E28CE6; Thu, 18 Apr 2019 20:14:17 +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=-8.0 required=2.0 tests=BAYES_00,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,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 C28A228CE4 for ; Thu, 18 Apr 2019 20:14:16 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S2390142AbfDRUOQ (ORCPT ); Thu, 18 Apr 2019 16:14:16 -0400 Received: from mout02.posteo.de ([185.67.36.66]:57427 "EHLO mout02.posteo.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1732589AbfDRUOQ (ORCPT ); Thu, 18 Apr 2019 16:14:16 -0400 X-Greylist: delayed 306 seconds by postgrey-1.27 at vger.kernel.org; Thu, 18 Apr 2019 16:14:15 EDT Received: from submission (posteo.de [89.146.220.130]) by mout02.posteo.de (Postfix) with ESMTPS id 18A972400FC for ; Thu, 18 Apr 2019 22:09:09 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=posteo.de; s=2017; t=1555618149; bh=bGme/EL1GHufqCjUwqaKH/LAjLx1fZCIbRNNa1LUjz4=; h=Date:From:Subject:To:From; b=OjQuPBrC3fyCI+cQRROVY0V3RKb6Mm+tGOYHWssYr3zXMPgL4rZAYITViiVXzH3SB tVIiB5w3emfarYoBOBuUNbJoknvVV8OIZRWertwjxp22fJTrL1IJqZsFfmJvRarRZh sQIYtv83gZ9+6W87IVQyO+XWkqBFdE1WXq/EXFBStaEZnHupmSZhIUmuHrNgHoeB8m 99qH1tZDgLjpjoI+gsxkbqRXH7xwEJR+grqsaBXWnIy+Ek5exfJEzV5RhzXEk/dSIz I2qeYtiztfsIZJAtH+VKYP6jwXdNC7F7Fjuni5pOeKHJUyhVEENERI1PAD6x/THmZ4 3tKSEaOVaYnKA== Received: from customer (localhost [127.0.0.1]) by submission (posteo.de) with ESMTPSA id 44lVYc3pkbz9rxP for ; Thu, 18 Apr 2019 22:09:08 +0200 (CEST) Date: Thu, 18 Apr 2019 22:09:07 +0200 From: Felix Haecker Subject: [PATCH] Add SMBus PNP ID for ThinkPad T580 for proper multi-touch gesture support To: linux-input@vger.kernel.org Message-Id: <1555618147.2.4@posteo.de> X-Mailer: geary/3.32.0 MIME-Version: 1.0 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 Without the ID some multi-touch gestures won't work (for example three finger pinch gesture). With 'psmouse.synaptics_intertouch=1' as kernel parameter the gestures are working. Signed-off-by: Felix Häcker --- 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 b6da0c1267e3..774cddc3f066 100644 --- a/drivers/input/mouse/synaptics.c +++ b/drivers/input/mouse/synaptics.c @@ -178,6 +178,7 @@ static const char * const smbus_pnp_ids[] = { "LEN0092", /* X1 Carbon 6 */ "LEN0096", /* X280 */ "LEN0097", /* X280 -> ALPS trackpoint */ + "LEN009b", /* T580 */ "LEN200f", /* T450s */ "SYN3052", /* HP EliteBook 840 G4 */ "SYN3221", /* HP 15-ay000 */