Skip to content

Commit bd91148

Browse files
jwrdegoederafaeljw
authored andcommitted
ACPI: resource: Skip IRQ override on ASUS ExpertBook B1402CVA
Like various other ASUS ExpertBook-s, the ASUS ExpertBook B1402CVA has an ACPI DSDT table that describes IRQ 1 as ActiveLow while the kernel overrides it to EdgeHigh. 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. Closes: https://bugzilla.kernel.org/show_bug.cgi?id=218114 Cc: All applicable <[email protected]> Signed-off-by: Hans de Goede <[email protected]> Signed-off-by: Rafael J. Wysocki <[email protected]>
1 parent 98b1cc8 commit bd91148

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
@@ -447,6 +447,13 @@ static const struct dmi_system_id irq1_level_low_skip_override[] = {
447447
DMI_MATCH(DMI_BOARD_NAME, "B1402CBA"),
448448
},
449449
},
450+
{
451+
/* Asus ExpertBook B1402CVA */
452+
.matches = {
453+
DMI_MATCH(DMI_SYS_VENDOR, "ASUSTeK COMPUTER INC."),
454+
DMI_MATCH(DMI_BOARD_NAME, "B1402CVA"),
455+
},
456+
},
450457
{
451458
/* Asus ExpertBook B1502CBA */
452459
.matches = {

0 commit comments

Comments
 (0)