diff options
| author | Radhey Kalra <radheykalra901@gmail.com> | 2026-06-15 14:40:34 +0530 |
|---|---|---|
| committer | Ilpo Järvinen <ilpo.jarvinen@linux.intel.com> | 2026-07-09 16:42:44 +0300 |
| commit | dcabd63cd12c119dc6bbc5c22bfa411021fd9a5b (patch) | |
| tree | cca8f2465a5e0aa02c1a34a593f8447a3b3e5dc3 | |
| parent | 0687673b1aa02fe10d2f0c627564843728f0b7e6 (diff) | |
| download | linux-dcabd63cd12c119dc6bbc5c22bfa411021fd9a5b.tar.gz linux-dcabd63cd12c119dc6bbc5c22bfa411021fd9a5b.zip | |
platform/x86: hp-wmi: Add Victus 15-fb0xxx support
HP Victus 15-fb0xxx board 8A3D exposes the Victus fan table and accepts
the existing Victus fan-speed WMI control path. Add a DMI match using the
Victus S thermal-profile and fan-control data.
Signed-off-by: Radhey Kalra <radheykalra901@gmail.com>
Link: https://patch.msgid.link/20260615091034.987029-4-radheykalra901@gmail.com
Reviewed-by: Ilpo Järvinen <ilpo.jarvinen@linux.intel.com>
Signed-off-by: Ilpo Järvinen <ilpo.jarvinen@linux.intel.com>
| -rw-r--r-- | drivers/platform/x86/hp/hp-wmi.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/drivers/platform/x86/hp/hp-wmi.c b/drivers/platform/x86/hp/hp-wmi.c index 11de5c70ce4d..0dcf2901259e 100644 --- a/drivers/platform/x86/hp/hp-wmi.c +++ b/drivers/platform/x86/hp/hp-wmi.c @@ -235,6 +235,10 @@ static const struct dmi_system_id hp_wmi_feature_boards[] __initconst = { .driver_data = (void *)&omen_v1_legacy_board_params, }, { + .matches = { DMI_MATCH(DMI_BOARD_NAME, "8A3D") }, + .driver_data = (void *)&victus_s_board_params, + }, + { .matches = { DMI_MATCH(DMI_BOARD_NAME, "8A44") }, .driver_data = (void *)&omen_v1_legacy_board_params, }, |
