diff options
author | Tamim Khan <tamim@fusetak.com> | 2024-09-02 21:43:05 -0400 |
---|---|---|
committer | Rafael J. Wysocki <rafael.j.wysocki@intel.com> | 2024-09-03 16:22:54 +0200 |
commit | 49e9cc315604972cc14868cb67831e3e8c3f1470 (patch) | |
tree | b2314eca1308b0e5dd595eca4e0846e81beea045 /drivers/acpi | |
parent | b53f09ecd602d7b8b7da83b0890cbac500b6a9b9 (diff) | |
download | lwn-49e9cc315604972cc14868cb67831e3e8c3f1470.tar.gz lwn-49e9cc315604972cc14868cb67831e3e8c3f1470.zip |
ACPI: resource: Skip IRQ override on Asus Vivobook Go E1404GAB
Like other Asus Vivobooks, the Asus Vivobook Go E1404GAB has a DSDT
that describes IRQ 1 as ActiveLow, while the kernel overrides to Edge_High.
This override prevents the internal keyboard from working.
Fix the problem by adding this laptop to the table that prevents the kernel
from overriding the IRQ.
Link: https://bugzilla.kernel.org/show_bug.cgi?id=219212
Signed-off-by: Tamim Khan <tamim@fusetak.com>
Link: https://patch.msgid.link/20240903014317.38858-1-tamim@fusetak.com
[ rjw: Changelog edits ]
Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
Diffstat (limited to 'drivers/acpi')
-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 aa9990507f34..dd410e67d036 100644 --- a/drivers/acpi/resource.c +++ b/drivers/acpi/resource.c @@ -504,6 +504,13 @@ static const struct dmi_system_id irq1_level_low_skip_override[] = { }, }, { + /* Asus Vivobook Go E1404GAB */ + .matches = { + DMI_MATCH(DMI_SYS_VENDOR, "ASUSTeK COMPUTER INC."), + DMI_MATCH(DMI_BOARD_NAME, "E1404GAB"), + }, + }, + { /* Asus Vivobook E1504GA */ .matches = { DMI_MATCH(DMI_SYS_VENDOR, "ASUSTeK COMPUTER INC."), |