Skip to content

Commit 056301e

Browse files
jwrdegoederafaeljw
authored andcommitted
ACPI: resource: Add Asus ExpertBook B2502CVA to irq1_level_low_skip_override[]
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 <[email protected]> Signed-off-by: Hans de Goede <[email protected]> Link: https://patch.msgid.link/[email protected] Signed-off-by: Rafael J. Wysocki <[email protected]>
1 parent 2f80ce0 commit 056301e

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

drivers/acpi/resource.c

+7
Original file line numberDiff line numberDiff line change
@@ -510,6 +510,13 @@ static const struct dmi_system_id irq1_level_low_skip_override[] = {
510510
DMI_MATCH(DMI_BOARD_NAME, "B2502FBA"),
511511
},
512512
},
513+
{
514+
/* Asus ExpertBook B2502CVA */
515+
.matches = {
516+
DMI_MATCH(DMI_SYS_VENDOR, "ASUSTeK COMPUTER INC."),
517+
DMI_MATCH(DMI_BOARD_NAME, "B2502CVA"),
518+
},
519+
},
513520
{
514521
/* Asus Vivobook Go E1404GA* */
515522
.matches = {

0 commit comments

Comments
 (0)