From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-1.web.codeaurora.org [10.30.226.201]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id 93638137C48; Tue, 23 Jan 2024 00:02:03 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=10.30.226.201 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1705968123; cv=none; b=QR3eLDRE5jXO4dTNqPHPYFXOHDle7AYx3gqSfUjp9dvbQLoVo1dLuSyft1m9rnOkvvJDEz3NA7EcXhmKXw9ax0YWUbabo5H0T1be2gHLKqBdrgfxxMSmA4m9IWyrdBPDB3++7VuByUwVUCvIu1Y6g8qpeskNRbKCl1BuwcNPtxQ= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1705968123; c=relaxed/simple; bh=Xo/bv46EKmxeQbMPHrF1eDnBhOKIBf+L7yw/s2fw/c4=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=tEEIGsmIpTK1PkOfMpUMLDy4WFew5PaO9sjos2XSkieURl6wmXmB3AZWXf1gqJUFucZ0r4JXseAYhGUzopKLz91a06RnHcf08gkzMiKH0cNrW75IpMaqPcj05WiW9nxThbUoDqG+flzeqYsUbyNct3pHq4JJoBuwTEU85StRlX0= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=zYQYvnn7; arc=none smtp.client-ip=10.30.226.201 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b="zYQYvnn7" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 310A9C433F1; Tue, 23 Jan 2024 00:02:02 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1705968123; bh=Xo/bv46EKmxeQbMPHrF1eDnBhOKIBf+L7yw/s2fw/c4=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=zYQYvnn7eAfYk5NRxPXAyrHZswsohCqjn4TMdimT6f6JpYnP5uLZmVh9M06sDSAt5 qySkCfAlf7NAE3nKDvZti9L/o2vwBxm4uybcAnQGAtM7VIMUHlKXQt6hcwXr2YUvxq t3rtV6QA4Ww1KzeAqCxDc1Swuc1rUtIr9o9wYa+o= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, Esther Shimanovich , Dmitry Torokhov , Sasha Levin Subject: [PATCH 4.19 017/148] Input: i8042 - add nomux quirk for Acer P459-G2-M Date: Mon, 22 Jan 2024 15:56:13 -0800 Message-ID: <20240122235713.123199221@linuxfoundation.org> X-Mailer: git-send-email 2.43.0 In-Reply-To: <20240122235712.442097787@linuxfoundation.org> References: <20240122235712.442097787@linuxfoundation.org> User-Agent: quilt/0.67 X-stable: review X-Patchwork-Hint: ignore Precedence: bulk X-Mailing-List: patches@lists.linux.dev List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit 4.19-stable review patch. If anyone has any objections, please let me know. ------------------ From: Esther Shimanovich [ Upstream commit 335fe00319e030d481a54d5e0e68d50c5e672c0e ] After the laptop lid is opened, and the device resumes from S3 deep sleep, if the user presses a keyboard key while the screen is still black, the mouse and keyboard become unusable. Enabling this quirk prevents this behavior from occurring. Signed-off-by: Esther Shimanovich Link: https://lore.kernel.org/r/20231130195615.v2.1.Ibe78a9df97ecd18dc227a5cff67d3029631d9c11@changeid 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 2d4df82d65af..06d99931519b 100644 --- a/drivers/input/serio/i8042-x86ia64io.h +++ b/drivers/input/serio/i8042-x86ia64io.h @@ -355,6 +355,14 @@ static const struct dmi_system_id i8042_dmi_quirk_table[] __initconst = { }, .driver_data = (void *)(SERIO_QUIRK_DRITEK) }, + { + /* Acer TravelMate P459-G2-M */ + .matches = { + DMI_MATCH(DMI_SYS_VENDOR, "Acer"), + DMI_MATCH(DMI_PRODUCT_NAME, "TravelMate P459-G2-M"), + }, + .driver_data = (void *)(SERIO_QUIRK_NOMUX) + }, { /* Amoi M636/A737 */ .matches = { -- 2.43.0