Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 17 additions & 0 deletions src/linuwu_sense.c
Original file line number Diff line number Diff line change
Expand Up @@ -471,6 +471,14 @@ enum acer_wmi_predator_v4_oc {
.turbo = 1,
.cpu_fans = 1,
.gpu_fans = 1,
};

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

A small typo:

Suggested change
};
};


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

static struct quirk_entry quirk_acer_predator_phn16_71 = {
Expand Down Expand Up @@ -755,6 +763,15 @@ enum acer_wmi_predator_v4_oc {
},
.driver_data = &quirk_acer_predator_ph315_53,
},
{
.callback = dmi_matched,
.ident = "Acer Predator PH315-54",
.matches = {
DMI_MATCH(DMI_SYS_VENDOR, "Acer"),
DMI_MATCH(DMI_PRODUCT_NAME, "Predator PH315-54"),
},
.driver_data = &quirk_acer_predator_ph315_54,
},
{
.callback = dmi_matched,
.ident = "Acer Predator PHN16-71",
Expand Down