brcm2708: update to latest patches from the RPi foundation
[openwrt/staging/wigyori.git] / target / linux / brcm2708 / patches-4.19 / 950-0173-drivers-thermal-step_wise-avoid-throttling-at-hyster.patch
1 From e381db8721f2658d7c90183b4685bb62e96db6fe Mon Sep 17 00:00:00 2001
2 From: Serge Schneider <serge@raspberrypi.org>
3 Date: Tue, 2 Oct 2018 11:14:15 +0100
4 Subject: [PATCH 173/725] drivers: thermal: step_wise: avoid throttling at
5 hysteresis temperature after dropping below it
6
7 Signed-off-by: Serge Schneider <serge@raspberrypi.org>
8 ---
9 drivers/thermal/step_wise.c | 2 +-
10 1 file changed, 1 insertion(+), 1 deletion(-)
11
12 --- a/drivers/thermal/step_wise.c
13 +++ b/drivers/thermal/step_wise.c
14 @@ -167,7 +167,7 @@ static void thermal_zone_trip_update(str
15 */
16 if (tz->temperature >= trip_temp ||
17 (tz->temperature >= hyst_temp &&
18 - old_target != THERMAL_NO_TARGET)) {
19 + old_target == instance->upper)) {
20 throttle = true;
21 trace_thermal_zone_trip(tz, trip, trip_type);
22 }