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.5 required=3.0 tests=BAYES_00,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 0DEAAC4363A for ; Mon, 5 Oct 2020 15:41:28 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id C3F302074F for ; Mon, 5 Oct 2020 15:41:27 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1601912487; bh=Fs+Lnk6+k8Me4JBcQtiaRFUGznEJPUpoXfKzT/K0XGg=; h=From:To:Cc:Subject:Date:In-Reply-To:References:List-ID:From; b=g//cuASgAhRLRBbCleQrnH/x42Nem05ot7vhbyfgdQGWvp/95Zuu904QP9KuAEtk2 4J9lKxMDAvhIKixH3ikqylT1qrsc8OSE1fRWyZoXD9VonPHys/mqJnyEmTxc7XQgGz qNvOfWXnDyQZD7NfiexjzcxAbAoLuvFHxj9neNRI= Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1728835AbgJEPl0 (ORCPT ); Mon, 5 Oct 2020 11:41:26 -0400 Received: from mail.kernel.org ([198.145.29.99]:54082 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1727482AbgJEP25 (ORCPT ); Mon, 5 Oct 2020 11:28:57 -0400 Received: from localhost (83-86-74-64.cable.dynamic.v4.ziggo.nl [83.86.74.64]) (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 492C220637; Mon, 5 Oct 2020 15:28:56 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1601911736; bh=Fs+Lnk6+k8Me4JBcQtiaRFUGznEJPUpoXfKzT/K0XGg=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=2CMRZhjKq2y8hAVcbxu05fMoU/PG6TpGRUeeXakMBy6UVdBn4Avd4TvR9Xd6jltjo cNVTHHlK58+MzQ30C9LXXPuEJ6xmp2PKpRWLGzgme1/6U8z0unvN60cRsilvmwQlr+ udf03bKt5zQP7z70m4u7YvdviNGxfyXSjtHEHgTo= From: Greg Kroah-Hartman To: linux-kernel@vger.kernel.org Cc: Greg Kroah-Hartman , stable@vger.kernel.org, =?UTF-8?q?Andr=C3=A9s=20Barrantes=20Silman?= , Jiri Kosina , Dmitry Torokhov Subject: [PATCH 5.4 11/57] Input: i8042 - add nopnp quirk for Acer Aspire 5 A515 Date: Mon, 5 Oct 2020 17:26:23 +0200 Message-Id: <20201005142110.356861099@linuxfoundation.org> X-Mailer: git-send-email 2.28.0 In-Reply-To: <20201005142109.796046410@linuxfoundation.org> References: <20201005142109.796046410@linuxfoundation.org> User-Agent: quilt/0.66 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org From: Jiri Kosina commit 5fc27b098dafb8e30794a9db0705074c7d766179 upstream. Touchpad on this laptop is not detected properly during boot, as PNP enumerates (wrongly) AUX port as disabled on this machine. Fix that by adding this board (with admittedly quite funny DMI identifiers) to nopnp quirk list. Reported-by: Andrés Barrantes Silman Signed-off-by: Jiri Kosina Link: https://lore.kernel.org/r/nycvar.YFH.7.76.2009252337340.3336@cbobk.fhfr.pm Cc: stable@vger.kernel.org Signed-off-by: Dmitry Torokhov Signed-off-by: Greg Kroah-Hartman --- drivers/input/serio/i8042-x86ia64io.h | 7 +++++++ 1 file changed, 7 insertions(+) --- a/drivers/input/serio/i8042-x86ia64io.h +++ b/drivers/input/serio/i8042-x86ia64io.h @@ -721,6 +721,13 @@ static const struct dmi_system_id __init DMI_MATCH(DMI_BOARD_VENDOR, "MICRO-STAR INTERNATIONAL CO., LTD"), }, }, + { + /* Acer Aspire 5 A515 */ + .matches = { + DMI_MATCH(DMI_BOARD_NAME, "Grumpy_PK"), + DMI_MATCH(DMI_BOARD_VENDOR, "PK"), + }, + }, { } };