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 DAA9D1774B; Thu, 18 Jan 2024 10:55:18 +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=1705575318; cv=none; b=EgXAXzYDnqgA7Q5dthHuIR7XeGjXty3i6WBbd4pqcbzMD8s+soFblC9vM31VrFgbpDOOOdTd4So1oma5KTvkB0fa0376/X8N9vdk0xa9fzWEmW6BeBdy/nQtdZXGrwrTVD7UHvdpPXJQJWqvos50KsbKeShhGdFZU+69TKMVL8s= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1705575318; c=relaxed/simple; bh=n8xq0SZLa1Caxmjkl0fIUZgvQ7d88wNPy47vWZvcKPw=; h=Received:DKIM-Signature:From:To:Cc:Subject:Date:Message-ID: X-Mailer:In-Reply-To:References:User-Agent:X-stable: X-Patchwork-Hint:MIME-Version:Content-Transfer-Encoding; b=QRgbZWgsPIn+ZcDAHb26q26wNe7s2TNef0sVoxhVjJrE15tyV6hhrRdeyejlFlwfzRbWVQ+XCgysxGtPnXJiPtbDXoIqeRLP2VZOg0ZEnbqHxL1hTeiMrlux4aomI7OUjCWhKHB99z/S1q8X6FqrjRRJ1Q1NbX4Ijtn4d8xBaFc= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=TAJd7X4U; 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="TAJd7X4U" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 358D5C433C7; Thu, 18 Jan 2024 10:55:18 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1705575318; bh=n8xq0SZLa1Caxmjkl0fIUZgvQ7d88wNPy47vWZvcKPw=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=TAJd7X4U3XkhVrgBRionL9gTIuo9Y5tOae0sfLMavr1w69OeJYspF7DGyHB6S9G0n RQhWLpCXHfnqDGMeKwf5TfPUpUR39z/eMKmYU6F4bFf3v40y7ihUmS089EKIvgCDTz nh9T5021D1KcBpHfRNE2NZYq+SpfGI8A8oRrk8b4= 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 6.6 088/150] Input: i8042 - add nomux quirk for Acer P459-G2-M Date: Thu, 18 Jan 2024 11:48:30 +0100 Message-ID: <20240118104324.027149349@linuxfoundation.org> X-Mailer: git-send-email 2.43.0 In-Reply-To: <20240118104320.029537060@linuxfoundation.org> References: <20240118104320.029537060@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 6.6-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-acpipnpio.h | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/drivers/input/serio/i8042-acpipnpio.h b/drivers/input/serio/i8042-acpipnpio.h index 9c39553d30fa..b585b1dab870 100644 --- a/drivers/input/serio/i8042-acpipnpio.h +++ b/drivers/input/serio/i8042-acpipnpio.h @@ -360,6 +360,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