diff options
author | Stratos Karafotis <stratosk@semaphore.gr> | 2013-02-08 12:24:24 -0500 |
---|---|---|
committer | Rafael J. Wysocki <rafael.j.wysocki@intel.com> | 2013-02-09 06:56:19 -0500 |
commit | c88883cd545ea2a0baafe7308618de9cbf420bdd (patch) | |
tree | 790322a08f67a32f5894aa1aea3e891dca4c47ed /drivers/cpufreq/cpufreq_conservative.c | |
parent | 06eb09d17c9092c96e55a4ab886018c5c844d312 (diff) |
cpufreq: conservative: Fix typos in comments
Fix a couple of typos in comments.
Signed-off-by: Stratos Karafotis <stratosk@semaphore.gr>
Acked-by: Viresh Kumar <viresh.kumar@linaro.org>
Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
Diffstat (limited to 'drivers/cpufreq/cpufreq_conservative.c')
-rw-r--r-- | drivers/cpufreq/cpufreq_conservative.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/cpufreq/cpufreq_conservative.c b/drivers/cpufreq/cpufreq_conservative.c index e8bb91571672..4fd0006b1291 100644 --- a/drivers/cpufreq/cpufreq_conservative.c +++ b/drivers/cpufreq/cpufreq_conservative.c | |||
@@ -25,7 +25,7 @@ | |||
25 | 25 | ||
26 | #include "cpufreq_governor.h" | 26 | #include "cpufreq_governor.h" |
27 | 27 | ||
28 | /* Conservative governor macors */ | 28 | /* Conservative governor macros */ |
29 | #define DEF_FREQUENCY_UP_THRESHOLD (80) | 29 | #define DEF_FREQUENCY_UP_THRESHOLD (80) |
30 | #define DEF_FREQUENCY_DOWN_THRESHOLD (20) | 30 | #define DEF_FREQUENCY_DOWN_THRESHOLD (20) |
31 | #define DEF_SAMPLING_DOWN_FACTOR (1) | 31 | #define DEF_SAMPLING_DOWN_FACTOR (1) |
@@ -144,7 +144,7 @@ static int dbs_cpufreq_notifier(struct notifier_block *nb, unsigned long val, | |||
144 | 144 | ||
145 | /* | 145 | /* |
146 | * we only care if our internally tracked freq moves outside the 'valid' | 146 | * we only care if our internally tracked freq moves outside the 'valid' |
147 | * ranges of freqency available to us otherwise we do not change it | 147 | * ranges of frequency available to us otherwise we do not change it |
148 | */ | 148 | */ |
149 | if (dbs_info->requested_freq > policy->max | 149 | if (dbs_info->requested_freq > policy->max |
150 | || dbs_info->requested_freq < policy->min) | 150 | || dbs_info->requested_freq < policy->min) |