Commit 8763f8ac authored by Luca Weiss's avatar Luca Weiss Committed by Daniel Lezcano
Browse files

thermal/drivers/qcom/temp-alarm: Fix inaccurate warning for gen2



On gen2 chips the stage2 threshold is not 140 degC but 125 degC.

Make the warning message clearer by using this variable and also by
including the temperature that was checked for.

Fixes: aa92b331 ("thermal/drivers/qcom-spmi-temp-alarm: Add support for GEN2 rev 1 PMIC peripherals")
Signed-off-by: default avatarLuca Weiss <luca.weiss@fairphone.com>
Reviewed-by: default avatarAmit Kucheria <amitk@kernel.org>
Link: https://lore.kernel.org/r/20221020145237.942146-1-luca.weiss@fairphone.com


Signed-off-by: default avatarDaniel Lezcano <daniel.lezcano@kernel.org>
parent fa17c413
Loading
Loading
Loading
Loading
+2 −1
Original line number Original line Diff line number Diff line
@@ -252,7 +252,8 @@ static int qpnp_tm_update_critical_trip_temp(struct qpnp_tm_chip *chip,
			disable_s2_shutdown = true;
			disable_s2_shutdown = true;
		else
		else
			dev_warn(chip->dev,
			dev_warn(chip->dev,
				 "No ADC is configured and critical temperature is above the maximum stage 2 threshold of 140 C! Configuring stage 2 shutdown at 140 C.\n");
				 "No ADC is configured and critical temperature %d mC is above the maximum stage 2 threshold of %ld mC! Configuring stage 2 shutdown at %ld mC.\n",
				 temp, stage2_threshold_max, stage2_threshold_max);
	}
	}


skip:
skip: