diff options
author | Shawn Guo <shawn.guo@linaro.org> | 2013-05-28 02:22:32 -0400 |
---|---|---|
committer | Nitin Garg <nitin.garg@freescale.com> | 2014-04-16 09:00:44 -0400 |
commit | b33a91247d1a2b02559e53aa98146d0b55d857f9 (patch) | |
tree | 8848208cc78912e07f3348204f398a2824a71fb0 | |
parent | 196b69e3d56791b391209e5dd3630ea0d69e2562 (diff) |
thermal: cpu_cooling: fix 'descend' check in get_property()
Commit 24c7a381720843f17efb42de81f7e85aefd6f616 upstream.
The variable 'descend' is initialized as -1 in function get_property(),
and will never get any chance to be updated by the following code.
if (freq != CPUFREQ_ENTRY_INVALID && descend != -1)
descend = !!(freq > table[i].frequency);
This makes function get_property() return the wrong frequency for given
cooling level if the frequency table is sorted in ascending. Fix it
by correcting the 'descend' check in if-condition to 'descend == -1'.
Signed-off-by: Shawn Guo <shawn.guo@linaro.org>
Signed-off-by: Zhang Rui <rui.zhang@intel.com>
Signed-off-by: Shawn Guo <shawn.guo@freescale.com>
-rw-r--r-- | drivers/thermal/cpu_cooling.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/thermal/cpu_cooling.c b/drivers/thermal/cpu_cooling.c index c94bf2e5de62..82e15dbb3ac7 100644 --- a/drivers/thermal/cpu_cooling.c +++ b/drivers/thermal/cpu_cooling.c | |||
@@ -167,7 +167,7 @@ static int get_property(unsigned int cpu, unsigned long input, | |||
167 | continue; | 167 | continue; |
168 | 168 | ||
169 | /* get the frequency order */ | 169 | /* get the frequency order */ |
170 | if (freq != CPUFREQ_ENTRY_INVALID && descend != -1) | 170 | if (freq != CPUFREQ_ENTRY_INVALID && descend == -1) |
171 | descend = !!(freq > table[i].frequency); | 171 | descend = !!(freq > table[i].frequency); |
172 | 172 | ||
173 | freq = table[i].frequency; | 173 | freq = table[i].frequency; |