Skip to content

Commit 9d89306

Browse files
superm1ij-intel
authored andcommitted
platform/x86/amd: pmf: Add quirk for ROG Zephyrus G14
ROG Zephyrus G14 advertises support for SPS notifications to the BIOS but doesn't actually use them. Instead the asus-nb-wmi driver utilizes such events. Add a quirk to prevent the system from registering for ACPI platform profile when this system is found to avoid conflicts. Reported-by: [email protected] Closes: https://bugzilla.kernel.org/show_bug.cgi?id=218685 Signed-off-by: Mario Limonciello <[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 ed13f62 commit 9d89306

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

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

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,14 @@ static struct quirk_entry quirk_no_sps_bug = {
2121
};
2222

2323
static const struct dmi_system_id fwbug_list[] = {
24+
{
25+
.ident = "ROG Zephyrus G14",
26+
.matches = {
27+
DMI_MATCH(DMI_SYS_VENDOR, "ASUSTeK COMPUTER INC."),
28+
DMI_MATCH(DMI_PRODUCT_NAME, "GA403UV"),
29+
},
30+
.driver_data = &quirk_no_sps_bug,
31+
},
2432
{}
2533
};
2634

0 commit comments

Comments
 (0)