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 Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id 7F1CEC76196 for ; Thu, 6 Apr 2023 11:37:08 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S238232AbjDFLhG (ORCPT ); Thu, 6 Apr 2023 07:37:06 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:34330 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S238205AbjDFLgS (ORCPT ); Thu, 6 Apr 2023 07:36:18 -0400 Received: from dfw.source.kernel.org (dfw.source.kernel.org [IPv6:2604:1380:4641:c500::1]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 34682AF0C; Thu, 6 Apr 2023 04:34:04 -0700 (PDT) Received: from smtp.kernel.org (relay.kernel.org [52.25.139.140]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by dfw.source.kernel.org (Postfix) with ESMTPS id F1174646D4; Thu, 6 Apr 2023 11:32:56 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 5432EC433D2; Thu, 6 Apr 2023 11:32:55 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1680780776; bh=O5FUzRydRgbd/1a29nGyOuQIzc1RLSElbTf+cqka+3s=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=bePYZJbbyDToez/FQf7v4IsBvl0sB52/KDsdKIFmPc05tRykHmmwQY8LyUZuu9KIy I97MfguXWYtsnKL9ccc47S5Xudn2UgVDuqTa3aditDfStoO5rByapzzk2RbKRHNihW Uk72fWeDnYtGQndzI7PVxNE2okN6neRDY9bQuhOzGMpCEWFU0h7cw8VzQrK4shqwtT lEcxjSRB28+E5w8HjG363qAcwxiyDLw8JDpavKqB2KIeDe0PaxWkoCtqQvvlOINtyN zvCt/bDSBOHId/PaGj+TgiABNo+QxBSlMFKmr517EZuCUy7tFu+SlCt5ltB+Hkg05I SmvJYeVf1eCBw== From: Sasha Levin To: linux-kernel@vger.kernel.org, stable@vger.kernel.org Cc: Jonathan Denose , Jonathan Denose , Hans de Goede , Dmitry Torokhov , Sasha Levin , wse@tuxedocomputers.com, chenhuacai@kernel.org, wsa+renesas@sang-engineering.com, linux-input@vger.kernel.org Subject: [PATCH AUTOSEL 5.15 02/11] Input: i8042 - add quirk for Fujitsu Lifebook A574/H Date: Thu, 6 Apr 2023 07:32:41 -0400 Message-Id: <20230406113250.648634-2-sashal@kernel.org> X-Mailer: git-send-email 2.39.2 In-Reply-To: <20230406113250.648634-1-sashal@kernel.org> References: <20230406113250.648634-1-sashal@kernel.org> MIME-Version: 1.0 X-stable: review X-Patchwork-Hint: Ignore Content-Transfer-Encoding: 8bit Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org From: Jonathan Denose [ Upstream commit f5bad62f9107b701a6def7cac1f5f65862219b83 ] Fujitsu Lifebook A574/H requires the nomux option to properly probe the touchpad, especially when waking from sleep. Signed-off-by: Jonathan Denose Reviewed-by: Hans de Goede Link: https://lore.kernel.org/r/20230303152623.45859-1-jdenose@google.com Signed-off-by: Dmitry Torokhov Signed-off-by: Sasha Levin --- drivers/input/serio/i8042-x86ia64io.h | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/drivers/input/serio/i8042-x86ia64io.h b/drivers/input/serio/i8042-x86ia64io.h index 239c777f8271c..339e765bcf5ae 100644 --- a/drivers/input/serio/i8042-x86ia64io.h +++ b/drivers/input/serio/i8042-x86ia64io.h @@ -601,6 +601,14 @@ static const struct dmi_system_id i8042_dmi_quirk_table[] __initconst = { }, .driver_data = (void *)(SERIO_QUIRK_NOMUX) }, + { + /* Fujitsu Lifebook A574/H */ + .matches = { + DMI_MATCH(DMI_SYS_VENDOR, "FUJITSU"), + DMI_MATCH(DMI_PRODUCT_NAME, "FMVA0501PZ"), + }, + .driver_data = (void *)(SERIO_QUIRK_NOMUX) + }, { /* Gigabyte M912 */ .matches = { -- 2.39.2