Skip to content

Commit 63539de

Browse files
jwrdegoederafaeljw
authored andcommitted
ACPI: resource: Loosen the Asus E1404GAB DMI match to also cover the E1404GA
Like other Asus Vivobooks, the Asus Vivobook Go E1404GA has a DSDT describing IRQ 1 as ActiveLow, while the kernel overrides to Edge_High. $ sudo dmesg | grep DMI:.*BIOS [ 0.000000] DMI: ASUSTeK COMPUTER INC. Vivobook Go E1404GA_E1404GA/E1404GA, BIOS E1404GA.302 08/23/2023 $ sudo cp /sys/firmware/acpi/tables/DSDT dsdt.dat $ iasl -d dsdt.dat $ grep -A 30 PS2K dsdt.dsl | grep IRQ -A 1 IRQ (Level, ActiveLow, Exclusive, ) {1} There already is an entry in the irq1_level_low_skip_override[] DMI match table for the "E1404GAB", change this to match on "E1404GA" to cover the E1404GA model as well (DMI_MATCH() does a substring match). Reported-by: Paul Menzel <[email protected]> Closes: https://bugzilla.kernel.org/show_bug.cgi?id=219224 Cc: All applicable <[email protected]> Signed-off-by: Hans de Goede <[email protected]> Link: https://patch.msgid.link/[email protected] Signed-off-by: Rafael J. Wysocki <[email protected]>
1 parent 65bdebf commit 63539de

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

drivers/acpi/resource.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -504,10 +504,10 @@ static const struct dmi_system_id irq1_level_low_skip_override[] = {
504504
},
505505
},
506506
{
507-
/* Asus Vivobook Go E1404GAB */
507+
/* Asus Vivobook Go E1404GA* */
508508
.matches = {
509509
DMI_MATCH(DMI_SYS_VENDOR, "ASUSTeK COMPUTER INC."),
510-
DMI_MATCH(DMI_BOARD_NAME, "E1404GAB"),
510+
DMI_MATCH(DMI_BOARD_NAME, "E1404GA"),
511511
},
512512
},
513513
{

0 commit comments

Comments
 (0)