Skip to content

Commit 49e9cc3

Browse files
fusetakrafaeljw
authored andcommitted
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>
1 parent b53f09e commit 49e9cc3

1 file changed

Lines changed: 7 additions & 0 deletions

File tree

drivers/acpi/resource.c

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -503,6 +503,13 @@ static const struct dmi_system_id irq1_level_low_skip_override[] = {
503503
DMI_MATCH(DMI_BOARD_NAME, "B2502FBA"),
504504
},
505505
},
506+
{
507+
/* Asus Vivobook Go E1404GAB */
508+
.matches = {
509+
DMI_MATCH(DMI_SYS_VENDOR, "ASUSTeK COMPUTER INC."),
510+
DMI_MATCH(DMI_BOARD_NAME, "E1404GAB"),
511+
},
512+
},
506513
{
507514
/* Asus Vivobook E1504GA */
508515
.matches = {

0 commit comments

Comments
 (0)