Skip to content

Commit

Permalink
platform/x86/amd: pmf: Add quirk for ROG Ally X
Browse files Browse the repository at this point in the history
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]>
  • Loading branch information
flukejones committed Aug 4, 2024
1 parent 1dc25fc commit 31ed307
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion drivers/platform/x86/amd/pmf/pmf-quirks.c
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,14 @@ static const struct dmi_system_id fwbug_list[] = {
},
.driver_data = &quirk_no_sps_bug,
},
{
.ident = "ROG Ally X",
.matches = {
DMI_MATCH(DMI_SYS_VENDOR, "ASUSTeK COMPUTER INC."),
DMI_MATCH(DMI_PRODUCT_NAME, "RC72LA"),
},
.driver_data = &quirk_no_sps_bug,
},
{}
};

Expand All @@ -48,4 +56,3 @@ void amd_pmf_quirks_init(struct amd_pmf_dev *dev)
dmi_id->ident);
}
}

0 comments on commit 31ed307

Please sign in to comment.