Skip to content

Commit 4c83ee4

Browse files
flukejonesij-intel
authored andcommitted
platform/x86/amd: pmf: Add quirk for ROG Ally X
The ASUS ROG Ally X has the same issue as the G14 where it advertises SPS support but doesn't use it. Signed-off-by: Luke D. Jones <[email protected]> Link: https://lore.kernel.org/r/[email protected] Reviewed-by: Ilpo Järvinen <[email protected]> Signed-off-by: Ilpo Järvinen <[email protected]>
1 parent e075c3b commit 4c83ee4

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

drivers/platform/x86/amd/pmf/pmf-quirks.c

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,14 @@ static const struct dmi_system_id fwbug_list[] = {
2929
},
3030
.driver_data = &quirk_no_sps_bug,
3131
},
32+
{
33+
.ident = "ROG Ally X",
34+
.matches = {
35+
DMI_MATCH(DMI_SYS_VENDOR, "ASUSTeK COMPUTER INC."),
36+
DMI_MATCH(DMI_PRODUCT_NAME, "RC72LA"),
37+
},
38+
.driver_data = &quirk_no_sps_bug,
39+
},
3240
{}
3341
};
3442

@@ -48,4 +56,3 @@ void amd_pmf_quirks_init(struct amd_pmf_dev *dev)
4856
dmi_id->ident);
4957
}
5058
}
51-

0 commit comments

Comments
 (0)