Skip to content

Commit b5f9223

Browse files
fusetakrafaeljw
authored andcommitted
ACPI: resource: Skip IRQ override on Asus Vivobook S5602ZA
Like the Asus Vivobook K3402ZA/K3502ZA/S5402ZA Asus Vivobook S5602ZA has an ACPI DSDT table the describes IRQ 1 as ActiveLow while the kernel overrides it to Edge_High. This prevents the keyboard on this laptop from working. To fix this 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=216579 Tested-by: Dzmitry <[email protected]> Signed-off-by: Tamim Khan <[email protected]> Signed-off-by: Rafael J. Wysocki <[email protected]>
1 parent 247f34f commit b5f9223

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
@@ -425,6 +425,13 @@ static const struct dmi_system_id asus_laptop[] = {
425425
DMI_MATCH(DMI_BOARD_NAME, "S5402ZA"),
426426
},
427427
},
428+
{
429+
.ident = "Asus Vivobook S5602ZA",
430+
.matches = {
431+
DMI_MATCH(DMI_SYS_VENDOR, "ASUSTeK COMPUTER INC."),
432+
DMI_MATCH(DMI_BOARD_NAME, "S5602ZA"),
433+
},
434+
},
428435
{ }
429436
};
430437

0 commit comments

Comments
 (0)