diff options
-rw-r--r-- | drivers/thermal/imx_thermal.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/thermal/imx_thermal.c b/drivers/thermal/imx_thermal.c index 9c32c125069c..28072a7b0eaa 100644 --- a/drivers/thermal/imx_thermal.c +++ b/drivers/thermal/imx_thermal.c @@ -659,7 +659,7 @@ static int imx_get_sensor_data(struct platform_device *pdev) * Set the critical trip point at 5C under max * Set the passive trip point at 10C under max (can change via sysfs) */ - data->temp_critical = data->temp_max - (1000 * 5); + data->temp_critical = data->temp_max + (1000 * 10); data->temp_passive = data->temp_max - (1000 * 10); return 0; |