bcm27xx: switch to kernel v6.1
[openwrt/openwrt.git] / target / linux / bcm27xx / patches-5.15 / 950-0110-drivers-thermal-step_wise-avoid-throttling-at-hyster.patch
1 From 190f73386e95c43f6a56710f7990a95972ae5448 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] 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/gov_step_wise.c | 2 +-
10 1 file changed, 1 insertion(+), 1 deletion(-)
11
12 --- a/drivers/thermal/gov_step_wise.c
13 +++ b/drivers/thermal/gov_step_wise.c
14 @@ -153,7 +153,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 }