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=-6.8 required=3.0 tests=DKIMWL_WL_HIGH,DKIM_SIGNED, DKIM_VALID,HEADER_FROM_DIFFERENT_DOMAINS,MAILING_LIST_MULTI,SIGNED_OFF_BY, SPF_HELO_NONE,SPF_PASS,URIBL_BLOCKED,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 26F10C3A5A6 for ; Thu, 19 Sep 2019 22:07:26 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id EF7F121924 for ; Thu, 19 Sep 2019 22:07:25 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1568930846; bh=lm6BwGJhFtDWraC0/vbb1JJxq858JWoVqUniMJAji9Y=; h=From:To:Cc:Subject:Date:In-Reply-To:References:List-ID:From; b=m/mEqZXoC2FCJ8ojuGR/7+EmQJ51t8xiFoLLuHJRI8wQt3QrRIeaNeMuFq4sqpO/W ofgU5q+oHjV2/ddxn9q9ZHHvf7C6gBcWEhG5AShW8a93zHuBzUs1MBxpb3Rncm2MBP /yr//Y8j1zLCbdcuR0vEzKQMny/+zDDve3Ua5+7U= Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S2393177AbfISWHZ (ORCPT ); Thu, 19 Sep 2019 18:07:25 -0400 Received: from mail.kernel.org ([198.145.29.99]:45056 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S2389600AbfISWHY (ORCPT ); Thu, 19 Sep 2019 18:07:24 -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 4345C218AF; Thu, 19 Sep 2019 22:07:23 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1568930843; bh=lm6BwGJhFtDWraC0/vbb1JJxq858JWoVqUniMJAji9Y=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=FNDJVY3dDmPIiErxB34zgJT57xkVzMaMWRahHDDV5H0FZrUy9dO7SmAUnIpAut+8s TyvIstRRj+5tU4iEf6vlNQQGAggCa7cQ8ZsZpXfdY5cjfWq08z5kCYgjZE4T8clcom Bunqf7TjTReHhoRAKw68L5uGGK0pvGOqi56fo4eE= From: Greg Kroah-Hartman To: linux-kernel@vger.kernel.org Cc: Greg Kroah-Hartman , stable@vger.kernel.org, Benjamin Tissoires , Dmitry Torokhov Subject: [PATCH 5.2 007/124] Input: elan_i2c - remove Lenovo Legion Y7000 PnpID Date: Fri, 20 Sep 2019 00:01:35 +0200 Message-Id: <20190919214819.454119527@linuxfoundation.org> X-Mailer: git-send-email 2.23.0 In-Reply-To: <20190919214819.198419517@linuxfoundation.org> References: <20190919214819.198419517@linuxfoundation.org> User-Agent: quilt/0.66 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 From: Benjamin Tissoires commit 0c043d70d04711fe6c380df9065fdc44192c49bf upstream. Looks like the Bios of the Lenovo Legion Y7000 is using ELAN061B when the actual device is supposed to be used with hid-multitouch. Remove it from the list of the supported device, hoping that no one will complain about the loss in functionality. Link: https://bugzilla.kernel.org/show_bug.cgi?id=203467 Fixes: 738c06d0e456 ("Input: elan_i2c - add hardware ID for multiple Lenovo laptops") Signed-off-by: Benjamin Tissoires Signed-off-by: Dmitry Torokhov Signed-off-by: Greg Kroah-Hartman --- drivers/input/mouse/elan_i2c_core.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- a/drivers/input/mouse/elan_i2c_core.c +++ b/drivers/input/mouse/elan_i2c_core.c @@ -1357,7 +1357,7 @@ static const struct acpi_device_id elan_ { "ELAN0618", 0 }, { "ELAN0619", 0 }, { "ELAN061A", 0 }, - { "ELAN061B", 0 }, +/* { "ELAN061B", 0 }, not working on the Lenovo Legion Y7000 */ { "ELAN061C", 0 }, { "ELAN061D", 0 }, { "ELAN061E", 0 },