Skip to content

Commit 54bd1e5

Browse files
superm1rafaeljw
authored andcommitted
ACPI: x86: s2idle: Add another ID to s2idle_dmi_table
It's reported that "ASUSTeK COMPUTER INC. ROG Flow X16 GV601RW" has non-functional fans after resume when using the AMD codepath. This issue is fixed using the Microsoft codepath. Add the 3 variants of this system to the Microsoft codepath DMI table. * GV601RW * GV601RM * GV601RE Link: https://www.reddit.com/r/linuxhardware/comments/wh50nd/compatibility_report_asus_rog_flow_x16_gv601rm/ Link: https://gitlab.freedesktop.org/drm/amd/-/issues/2148#note_1571241 Reported-by: Luke Jones <[email protected]> Signed-off-by: Mario Limonciello <[email protected]> Signed-off-by: Rafael J. Wysocki <[email protected]>
1 parent 39f8177 commit 54bd1e5

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

drivers/acpi/x86/s2idle.c

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -451,6 +451,17 @@ static const struct dmi_system_id s2idle_dmi_table[] __initconst = {
451451
DMI_MATCH(DMI_PRODUCT_NAME, "ROG Flow X13 GV301"),
452452
},
453453
},
454+
{
455+
/*
456+
* ASUSTeK COMPUTER INC. ROG Flow X16 GV601RW_GV601RW
457+
* https://gitlab.freedesktop.org/drm/amd/-/issues/2148
458+
*/
459+
.callback = lps0_prefer_microsoft,
460+
.matches = {
461+
DMI_MATCH(DMI_SYS_VENDOR, "ASUSTeK COMPUTER INC."),
462+
DMI_MATCH(DMI_PRODUCT_NAME, "ROG Flow X16 GV601"),
463+
},
464+
},
454465
{}
455466
};
456467

0 commit comments

Comments
 (0)