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 D30621C4631; Tue, 8 Oct 2024 12:34:20 +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=1728390860; cv=none; b=g1M36oMlk8yFjRuJWwFDYnPaXL5z2JfMssbQI/WfnCM05aZoNR2kW1MAkss4TYEmuiyEovYomTwa2bpmpZFdo5Lzhn78XfGJcnYKG0K26AIjeo3F80xxbKQUmYpVkb1Y6yVtMs2cZ7fV9T/OuoDk/F7xqN6CIcgXq8DFAMnC0MI= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1728390860; c=relaxed/simple; bh=o/OsH4V6SI2GTdnQFGeSb5FVOljGanie1dC7SlOrpGM=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=HF2YrV1Una2EPpaaylxfKxmVsEy9iYGscTK4Q8SMGWZ6dJgxSvOnwr2cDGf7kmgGDwjDWofjcdinjax1EDsMVktF2kjXu/9IHTXia83kU4H5t5P1q9FpGbTouKOJcL6h7cVaLjWJN34BCG9KdYl/UUmK/yWZQsG/mo9Mx480t3k= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=nxJUczjM; 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="nxJUczjM" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 005A0C4CEC7; Tue, 8 Oct 2024 12:34:19 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1728390860; bh=o/OsH4V6SI2GTdnQFGeSb5FVOljGanie1dC7SlOrpGM=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=nxJUczjMrX+/ewI3FyQGnIkqs7UB5taHiqekSJqk1hjdtUdVM80sw1J+yARxSSseq SRA1dxzNbODxkADxwJ/69xFXFi+tUOvjTv0Dbv7GPt3hMGPzBDKOLUwnYhsSLq+NLH M9x6HW1K2Q56DnllpEfMWvM+bAv7M+4svnwRWhxI= 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 6.10 415/482] ACPI: resource: Add Asus Vivobook X1704VAP to irq1_level_low_skip_override[] Date: Tue, 8 Oct 2024 14:07:58 +0200 Message-ID: <20241008115704.734762131@linuxfoundation.org> X-Mailer: git-send-email 2.46.2 In-Reply-To: <20241008115648.280954295@linuxfoundation.org> References: <20241008115648.280954295@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 6.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 @@ -441,6 +441,13 @@ static const struct dmi_system_id irq1_l }, }, { + /* Asus Vivobook X1704VAP */ + .matches = { + DMI_MATCH(DMI_SYS_VENDOR, "ASUSTeK COMPUTER INC."), + DMI_MATCH(DMI_BOARD_NAME, "X1704VAP"), + }, + }, + { /* Asus ExpertBook B1402CBA */ .matches = { DMI_MATCH(DMI_SYS_VENDOR, "ASUSTeK COMPUTER INC."),