diff options
author | SungHwan Jung <onenowy@gmail.com> | 2024-02-20 14:52:31 +0900 |
---|---|---|
committer | Ilpo Järvinen <ilpo.jarvinen@linux.intel.com> | 2024-03-12 12:47:46 +0200 |
commit | 20a36ec343d4c5abc2378a45ab5e7ea1ca85020a (patch) | |
tree | caa823843dc06620fbf75bd6631615da0fe4aacb /drivers/platform/x86/acer-wmi.c | |
parent | 2e2431dc64a4272365f4d065ca70a4d4b6ca098e (diff) | |
download | linux-20a36ec343d4c5abc2378a45ab5e7ea1ca85020a.tar.gz linux-20a36ec343d4c5abc2378a45ab5e7ea1ca85020a.tar.bz2 linux-20a36ec343d4c5abc2378a45ab5e7ea1ca85020a.zip |
platform/x86: acer-wmi: Add support for Acer PH16-71
Add Acer Predator PH16-71 to Acer_quirks with predator_v4
to support mode button and fan speed sensor.
Signed-off-by: SungHwan Jung <onenowy@gmail.com>
Link: https://lore.kernel.org/r/20240220055231.6451-1-onenowy@gmail.com
Reviewed-by: Ilpo Järvinen <ilpo.jarvinen@linux.intel.com>
Signed-off-by: Ilpo Järvinen <ilpo.jarvinen@linux.intel.com>
Diffstat (limited to 'drivers/platform/x86/acer-wmi.c')
-rw-r--r-- | drivers/platform/x86/acer-wmi.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/drivers/platform/x86/acer-wmi.c b/drivers/platform/x86/acer-wmi.c index 88b826e88ebd..771b0ce34c8f 100644 --- a/drivers/platform/x86/acer-wmi.c +++ b/drivers/platform/x86/acer-wmi.c @@ -585,6 +585,15 @@ static const struct dmi_system_id acer_quirks[] __initconst = { .driver_data = &quirk_acer_predator_v4, }, { + .callback = dmi_matched, + .ident = "Acer Predator PH16-71", + .matches = { + DMI_MATCH(DMI_SYS_VENDOR, "Acer"), + DMI_MATCH(DMI_PRODUCT_NAME, "Predator PH16-71"), + }, + .driver_data = &quirk_acer_predator_v4, + }, + { .callback = set_force_caps, .ident = "Acer Aspire Switch 10E SW3-016", .matches = { |