Unverified Commit c85b516b authored by Armin Wolf's avatar Armin Wolf Committed by Ilpo Järvinen
Browse files

platform/x86: acer-wmi: Add support for Acer Predator PH16-72



Add the Acer Predator PT16-72 to acer_quirks to provide support
for the turbo button and predator_v4 interfaces.

Tested-by: default avatarEric Johnsten <ejohnsten@gmail.com>
Signed-off-by: default avatarArmin Wolf <W_Armin@gmx.de>
Link: https://lore.kernel.org/r/20250107175652.3171-1-W_Armin@gmx.de


Reviewed-by: default avatarIlpo Järvinen <ilpo.jarvinen@linux.intel.com>
Signed-off-by: default avatarIlpo Järvinen <ilpo.jarvinen@linux.intel.com>
parent 6af39604
Loading
Loading
Loading
Loading
+16 −0
Original line number Diff line number Diff line
@@ -406,6 +406,13 @@ static struct quirk_entry quirk_acer_predator_ph315_53 = {
	.gpu_fans = 1,
};

static struct quirk_entry quirk_acer_predator_ph16_72 = {
	.turbo = 1,
	.cpu_fans = 1,
	.gpu_fans = 1,
	.predator_v4 = 1,
};

static struct quirk_entry quirk_acer_predator_pt14_51 = {
	.turbo = 1,
	.cpu_fans = 1,
@@ -611,6 +618,15 @@ static const struct dmi_system_id acer_quirks[] __initconst = {
		},
		.driver_data = &quirk_acer_predator_v4,
	},
	{
		.callback = dmi_matched,
		.ident = "Acer Predator PH16-72",
		.matches = {
			DMI_MATCH(DMI_SYS_VENDOR, "Acer"),
			DMI_MATCH(DMI_PRODUCT_NAME, "Predator PH16-72"),
		},
		.driver_data = &quirk_acer_predator_ph16_72,
	},
	{
		.callback = dmi_matched,
		.ident = "Acer Predator PH18-71",