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 B93B21B21BB; Tue, 15 Oct 2024 13:18:30 +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=1728998310; cv=none; b=W9Zy7PPrqHq5iHlJA1LHG3RaGnTqaDXXUyFDfl+cueZXuR009bTVg/HGG8rE5+ixd04jcGU6DPDGU8QAW5EARBXFZQ2WcBr+YEx3+zOwtN3mcyzZCkwq3h68Pa5mAjaATIUCebObBNaos0inElfRL2aHDajP30R4xwA31ZebDnw= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1728998310; c=relaxed/simple; bh=z6z/LiduBLgvKBsJasmEu2f6rhiC/3wm0mmLtNGmCiw=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=OAeZNtmwSRNM662tllhjxLH+EA4pKVxpIGH6woV6ED/CD6BmuXKzO29bV0tNYs6e850dRleHr9pvCFHlZSJUgFtuybLaJXchoqsoAI8IvT4jfIny+WfXdeQSNPDsgeXD6wa/DzdtUSvN455keSvnpIpnbAfSvsQdvUlt/9E9fg8= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=wGFzBtEK; 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="wGFzBtEK" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 1DBB7C4CEC6; Tue, 15 Oct 2024 13:18:29 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1728998310; bh=z6z/LiduBLgvKBsJasmEu2f6rhiC/3wm0mmLtNGmCiw=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=wGFzBtEKj2D3FYhUhJRdwXwnougeCMIC584VT1mIqUrzAP63eb3UPPmBuHKsOjQZJ sj2leZrVsad6hkakAVj5K1fkLwjQWOH95XotHZ496ZOYj5ZeNdzfSG5E1i+JQpDRPB hMIGOlC2RiX3ekkubFvzYJnJpT7IU3oiYk6vSYqY= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, Lamome Julien , Hans de Goede , "Rafael J. Wysocki" Subject: [PATCH 5.10 410/518] ACPI: resource: Add Asus Vivobook X1704VAP to irq1_level_low_skip_override[] Date: Tue, 15 Oct 2024 14:45:14 +0200 Message-ID: <20241015123932.807585398@linuxfoundation.org> X-Mailer: git-send-email 2.47.0 In-Reply-To: <20241015123916.821186887@linuxfoundation.org> References: <20241015123916.821186887@linuxfoundation.org> User-Agent: quilt/0.67 X-stable: review X-Patchwork-Hint: ignore Precedence: bulk X-Mailing-List: stable@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit 5.10-stable review patch. If anyone has any objections, please let me know. ------------------ From: Hans de Goede commit 2f80ce0b78c340e332f04a5801dee5e4ac8cfaeb upstream. Like other Asus Vivobook models the X1704VAP has its keybopard IRQ (1) described as ActiveLow in the DSDT, which the kernel overrides to EdgeHigh which breaks the keyboard. Add the X1704VAP to the irq1_level_low_skip_override[] quirk table to fix this. Reported-by: Lamome Julien Closes: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1078696 Closes: https://lore.kernel.org/all/1226760b-4699-4529-bf57-6423938157a3@wanadoo.fr/ Cc: All applicable Signed-off-by: Hans de Goede Link: https://patch.msgid.link/20240927141606.66826-3-hdegoede@redhat.com Signed-off-by: Rafael J. Wysocki Signed-off-by: Greg Kroah-Hartman --- drivers/acpi/resource.c | 7 +++++++ 1 file changed, 7 insertions(+) --- a/drivers/acpi/resource.c +++ b/drivers/acpi/resource.c @@ -443,6 +443,13 @@ static const struct dmi_system_id asus_l }, }, { + /* Asus Vivobook X1704VAP */ + .matches = { + DMI_MATCH(DMI_SYS_VENDOR, "ASUSTeK COMPUTER INC."), + DMI_MATCH(DMI_BOARD_NAME, "X1704VAP"), + }, + }, + { /* TongFang GMxXGxx/TUXEDO Polaris 15 Gen5 AMD */ .matches = { DMI_MATCH(DMI_BOARD_NAME, "GMxXGxx"),