Commit 475f41c3 authored by Zhang Rui's avatar Zhang Rui

Thermal: fix a wrong comment

"level" parameter of get_cpu_frequency equals cooling state
of cpu cooling device, and it starts from 0.

Fix the misleading comment.
Signed-off-by: default avatarZhang Rui <rui.zhang@intel.com>
parent e6e238c3
...@@ -118,8 +118,8 @@ static int is_cpufreq_valid(int cpu) ...@@ -118,8 +118,8 @@ static int is_cpufreq_valid(int cpu)
/** /**
* get_cpu_frequency - get the absolute value of frequency from level. * get_cpu_frequency - get the absolute value of frequency from level.
* @cpu: cpu for which frequency is fetched. * @cpu: cpu for which frequency is fetched.
* @level: level of frequency of the CPU * @level: level of frequency, equals cooling state of cpu cooling device
* e.g level=1 --> 1st MAX FREQ, LEVEL=2 ---> 2nd MAX FREQ, .... etc * e.g level=0 --> 1st MAX FREQ, level=1 ---> 2nd MAX FREQ, .... etc
*/ */
static unsigned int get_cpu_frequency(unsigned int cpu, unsigned long level) static unsigned int get_cpu_frequency(unsigned int cpu, unsigned long level)
{ {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment