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
18 changes: 18 additions & 0 deletions src/linuwu_sense.c
Original file line number Diff line number Diff line change
Expand Up @@ -582,6 +582,15 @@ static struct quirk_entry quirk_acer_nitro_v4 = {

};

static struct quirk_entry quirk_acer_nitro_an517_54 = {
.nitro_v4 = 1,
.four_zone_kb = 1,
.brightness = -1,
.cpu_fans = 1,
.gpu_fans = 1,

};

/* The Aspire One has a dummy ACPI-WMI interface - disable it */
static const struct dmi_system_id acer_blacklist[] __initconst = {
{
Expand Down Expand Up @@ -860,6 +869,15 @@ static const struct dmi_system_id acer_quirks[] __initconst = {
},
.driver_data = (void *)ACER_CAP_KBD_DOCK,
},
{
.callback = dmi_matched,
.ident = "Acer Nitro AN517-54",
.matches = {
DMI_MATCH(DMI_SYS_VENDOR, "Acer"),
DMI_MATCH(DMI_PRODUCT_NAME, "Nitro AN517-54"),
},
.driver_data = &quirk_acer_nitro_an517_54,
},
{}};

/*
Expand Down