Skip to content

Commit c74e2ac

Browse files
committed
Merge tag 'thermal-6.4-rc8' of git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
Pull thermal control fix from Rafael Wysocki: "Fix a regression introduced during the 6.3 cycle causing intel_soc_dts_iosf to report incorrect temperature values due to a coding mistake (Hans de Goede)" * tag 'thermal-6.4-rc8' of git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm: thermal/intel/intel_soc_dts_iosf: Fix reporting wrong temperatures
2 parents 2e30b97 + 0bb619f commit c74e2ac

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

drivers/thermal/intel/intel_soc_dts_iosf.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -398,7 +398,7 @@ struct intel_soc_dts_sensors *intel_soc_dts_iosf_init(
398398
spin_lock_init(&sensors->intr_notify_lock);
399399
mutex_init(&sensors->dts_update_lock);
400400
sensors->intr_type = intr_type;
401-
sensors->tj_max = tj_max;
401+
sensors->tj_max = tj_max * 1000;
402402
if (intr_type == INTEL_SOC_DTS_INTERRUPT_NONE)
403403
notification = false;
404404
else

0 commit comments

Comments
 (0)