diff options
-rw-r--r-- | drivers/thermal/step_wise.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/thermal/step_wise.c b/drivers/thermal/step_wise.c index 3b54c2c226d8..fdd1f523a1ed 100644 --- a/drivers/thermal/step_wise.c +++ b/drivers/thermal/step_wise.c | |||
@@ -77,7 +77,7 @@ static unsigned long get_target_state(struct thermal_instance *instance, | |||
77 | next_target = instance->upper; | 77 | next_target = instance->upper; |
78 | break; | 78 | break; |
79 | case THERMAL_TREND_DROPPING: | 79 | case THERMAL_TREND_DROPPING: |
80 | if (cur_state == instance->lower) { | 80 | if (cur_state <= instance->lower) { |
81 | if (!throttle) | 81 | if (!throttle) |
82 | next_target = THERMAL_NO_TARGET; | 82 | next_target = THERMAL_NO_TARGET; |
83 | } else { | 83 | } else { |