diff options
author | Maxim Kudinov <[email protected]> | 2024-02-23 19:24:08 +0300 |
---|---|---|
committer | Rafael J. Wysocki <[email protected]> | 2024-02-27 17:49:19 +0100 |
commit | 021a67d096154893cd1d883c7be0097e2ee327fd (patch) | |
tree | 6140194a4bd6b02b5eeef8856a7dfd7ed6376ba7 | |
parent | e23ad54fef186aa66007895be1382c88f1ee2bf7 (diff) |
ACPI: resource: Add MAIBENBEN X577 to irq1_edge_low_force_override
A known issue on some Zen laptops, keyboard stopped working due to commit
9946e39fe8d0 [email protected]("ACPI: resource: skip IRQ override on AMD
Zen platforms") on kernel 5.19.10.
The ACPI IRQ override is required for this board due to buggy DSDT, thus
adding the board vendor and name to irq1_edge_low_force_override fixes
the issue.
Fixes: 9946e39fe8d0 ("ACPI: resource: skip IRQ override on AMD Zen platforms")
Link: https://bugzilla.kernel.org/show_bug.cgi?id=217394
Link: https://lore.kernel.org/linux-acpi/[email protected]/
Tested-by: Maxim Trofimov <[email protected]>
Signed-off-by: Maxim Kudinov <[email protected]>
Signed-off-by: Rafael J. Wysocki <[email protected]>
-rw-r--r-- | drivers/acpi/resource.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/drivers/acpi/resource.c b/drivers/acpi/resource.c index cc5b59fbc714..4fae9af32f69 100644 --- a/drivers/acpi/resource.c +++ b/drivers/acpi/resource.c @@ -616,6 +616,13 @@ static const struct dmi_system_id irq1_edge_low_force_override[] = { DMI_MATCH(DMI_BOARD_NAME, "LL6FA"), }, }, + { + /* MAIBENBEN X577 */ + .matches = { + DMI_MATCH(DMI_SYS_VENDOR, "MAIBENBEN"), + DMI_MATCH(DMI_BOARD_NAME, "X577"), + }, + }, { } }; |