Skip to content

Commit ca3afc2

Browse files
Nicolas Hayerafaeljw
authored andcommitted
ACPI: resource: Skip IRQ override on ASUS ExpertBook B1502CVA
Like many b1502 models, the b1502CVA keyboard doesn't work because of an ACPI DSDT table that describes IRQ 1 as ActiveLow while the kernel overrides it to Edge_High. Signed-off-by: Nicolas Haye <nicolas.haye@proton.me> Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
1 parent 841c351 commit ca3afc2

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
@@ -468,6 +468,13 @@ static const struct dmi_system_id irq1_level_low_skip_override[] = {
468468
DMI_MATCH(DMI_BOARD_NAME, "B1502CGA"),
469469
},
470470
},
471+
{
472+
/* Asus ExpertBook B1502CVA */
473+
.matches = {
474+
DMI_MATCH(DMI_SYS_VENDOR, "ASUSTeK COMPUTER INC."),
475+
DMI_MATCH(DMI_BOARD_NAME, "B1502CVA"),
476+
},
477+
},
471478
{
472479
/* Asus ExpertBook B2402CBA */
473480
.matches = {

0 commit comments

Comments
 (0)