Skip to content

Commit 77c7248

Browse files
fusetakrafaeljw
authored andcommitted
ACPI: resource: Skip IRQ override on Asus Expertbook B2402CBA
Like the Asus Expertbook B2502CBA and various Asus Vivobook laptops, the Asus Expertbook B2402CBA has an ACPI DSDT table that describes IRQ 1 as ActiveLow while the kernel overrides it to Edge_High. This prevents the keyboard from working. To fix this issue, add this laptop to the skip_override_table so that the kernel does not override IRQ 1. Link: https://bugzilla.kernel.org/show_bug.cgi?id=216864 Tested-by: zelenat <[email protected]> Signed-off-by: Tamim Khan <[email protected]> Signed-off-by: Rafael J. Wysocki <[email protected]>
1 parent b7bfaa7 commit 77c7248

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

drivers/acpi/resource.c

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -432,6 +432,13 @@ static const struct dmi_system_id asus_laptop[] = {
432432
DMI_MATCH(DMI_BOARD_NAME, "S5602ZA"),
433433
},
434434
},
435+
{
436+
.ident = "Asus ExpertBook B2402CBA",
437+
.matches = {
438+
DMI_MATCH(DMI_SYS_VENDOR, "ASUSTeK COMPUTER INC."),
439+
DMI_MATCH(DMI_BOARD_NAME, "B2402CBA"),
440+
},
441+
},
435442
{
436443
.ident = "Asus ExpertBook B2502",
437444
.matches = {

0 commit comments

Comments
 (0)