Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

hwmon: (dell-smm) Add Dell Latitude E7440 to fan control whitelist

Allow manual PWM control on Dell Latitude E7440.

Reviewed-by: Pali Rohár <pali@kernel.org>
Link: https://lore.kernel.org/r/20210411095741.zmllsuc7pevdipvy@icloud.com
Signed-off-by: Sebastian Oechsle <setboolean@icloud.com>
Signed-off-by: Guenter Roeck <linux@roeck-us.net>

authored by

Sebastian Oechsle and committed by
Guenter Roeck
807b8c29 e3b65ffa

+8
+8
drivers/hwmon/dell-smm-hwmon.c
··· 1210 1210 }, 1211 1211 .driver_data = (void *)&i8k_fan_control_data[I8K_FAN_34A3_35A3], 1212 1212 }, 1213 + { 1214 + .ident = "Dell Latitude E7440", 1215 + .matches = { 1216 + DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."), 1217 + DMI_EXACT_MATCH(DMI_PRODUCT_NAME, "Latitude E7440"), 1218 + }, 1219 + .driver_data = (void *)&i8k_fan_control_data[I8K_FAN_34A3_35A3], 1220 + }, 1213 1221 { } 1214 1222 }; 1215 1223