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

Configure Feed

Select the types of activity you want to include in your feed.

hwmon: (dell-smm) Remove Dell Precision 490 custom config data

It turns out the second fan on the Dell Precision 490 does not
really support I8K_FAN_TURBO. Setting the fan state to 3 enables
automatic fan control, just like on the other two fans.
The reason why this was misinterpreted as turbo mode was that
the second fan normally spins faster in automatic mode than
in the previous fan states. Yet when in state 3, the fan speed
reacts to heat exposure, exposing the automatic mode setting.

Link: https://github.com/lm-sensors/lm-sensors/pull/383
Signed-off-by: Armin Wolf <W_Armin@gmx.de>
Link: https://lore.kernel.org/r/20250917181036.10972-2-W_Armin@gmx.de
Signed-off-by: Guenter Roeck <linux@roeck-us.net>

authored by

Armin Wolf and committed by
Guenter Roeck
ddb61e73 5d5ec7c8

-14
-14
drivers/hwmon/dell-smm-hwmon.c
··· 1331 1331 1332 1332 enum i8k_configs { 1333 1333 DELL_LATITUDE_D520, 1334 - DELL_PRECISION_490, 1335 1334 DELL_STUDIO, 1336 1335 DELL_XPS, 1337 1336 }; 1338 1337 1339 1338 static const struct i8k_config_data i8k_config_data[] __initconst = { 1340 1339 [DELL_LATITUDE_D520] = { 1341 - .fan_mult = 1, 1342 - .fan_max = I8K_FAN_TURBO, 1343 - }, 1344 - [DELL_PRECISION_490] = { 1345 1340 .fan_mult = 1, 1346 1341 .fan_max = I8K_FAN_TURBO, 1347 1342 }, ··· 1358 1363 DMI_MATCH(DMI_PRODUCT_NAME, "Latitude D520"), 1359 1364 }, 1360 1365 .driver_data = (void *)&i8k_config_data[DELL_LATITUDE_D520], 1361 - }, 1362 - { 1363 - .ident = "Dell Precision 490", 1364 - .matches = { 1365 - DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."), 1366 - DMI_MATCH(DMI_PRODUCT_NAME, 1367 - "Precision WorkStation 490"), 1368 - }, 1369 - .driver_data = (void *)&i8k_config_data[DELL_PRECISION_490], 1370 1366 }, 1371 1367 { 1372 1368 .ident = "Dell Studio",