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 D87A91779B1; Tue, 8 Oct 2024 12:34:23 +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=1728390863; cv=none; b=mflfpPdjv/HBND989AXAI515w9T06RM6vItAuDbZMLoALqBiytrPlCHQsHlf+qxOt9bsvrDT5t4W08wjNLrvuYT7ztjebsaWXCjZU0MEg7gmCJ1eqvEP+gHTEimmG4kq/frMBe4qphbYFvsi6kq13G4e9JM7YvGUzV0AyhmHvn4= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1728390863; c=relaxed/simple; bh=mmV8vfE+y57oUk5iiRGVW5D+GUyCjlZc/je11ESt1XA=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=figk9JnrIvAOxPaTkXdyJ/5KYmzkHpoGjlhHxKzY2rt/3kcYu4NdlqvotIli/gNlb+uBFTiCjQ0b10QtO2JiTeJpqu4TTeJ/7T3O7OgR3+vbkfeGcOFGEvL9SBu3aR9/Or3ZI01ijhs0raSWqqu6eRR77mNikq+jEqQZnYg31tA= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=UYO8sDC+; 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="UYO8sDC+" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 43EF8C4CEC7; Tue, 8 Oct 2024 12:34:23 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1728390863; bh=mmV8vfE+y57oUk5iiRGVW5D+GUyCjlZc/je11ESt1XA=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=UYO8sDC+s+umxLj6aH2t0s9obAKa4SghD0xgg6/KEHAGwYwb016PRKd6vuKZpZOz0 MtBfC69RkBRX9/xRP4VBPYXIxpdF34rLSKgKRYjKYIMSw4PGogKAUh5vJLGJB2idbJ MbJRpdyefcGOv9Akb3e9yUJODU0I6FBI+UYf8feI= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, Hans de Goede , "Rafael J. Wysocki" Subject: [PATCH 6.10 416/482] ACPI: resource: Add Asus ExpertBook B2502CVA to irq1_level_low_skip_override[] Date: Tue, 8 Oct 2024 14:07:59 +0200 Message-ID: <20241008115704.773911007@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: patches@lists.linux.dev 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 056301e7c7c886f96d799edd36f3406cc30e1822 upstream. Like other Asus ExpertBook models the B2502CVA has its keybopard IRQ (1) described as ActiveLow in the DSDT, which the kernel overrides to EdgeHigh which breaks the keyboard. Add the B2502CVA to the irq1_level_low_skip_override[] quirk table to fix this. Closes: https://bugzilla.kernel.org/show_bug.cgi?id=217760 Cc: All applicable Signed-off-by: Hans de Goede Link: https://patch.msgid.link/20240927141606.66826-4-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 @@ -511,6 +511,13 @@ static const struct dmi_system_id irq1_l }, }, { + /* Asus ExpertBook B2502CVA */ + .matches = { + DMI_MATCH(DMI_SYS_VENDOR, "ASUSTeK COMPUTER INC."), + DMI_MATCH(DMI_BOARD_NAME, "B2502CVA"), + }, + }, + { /* Asus Vivobook Go E1404GA* */ .matches = { DMI_MATCH(DMI_SYS_VENDOR, "ASUSTeK COMPUTER INC."),