Commit c88883cd545ea2a0baafe7308618de9cbf420bdd

Authored by Stratos Karafotis
Committed by Rafael J. Wysocki
1 parent 06eb09d17c

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>

Showing 1 changed file with 2 additions and 2 deletions Side-by-side Diff

drivers/cpufreq/cpufreq_conservative.c
... ... @@ -25,7 +25,7 @@
25 25  
26 26 #include "cpufreq_governor.h"
27 27  
28   -/* Conservative governor macors */
  28 +/* Conservative governor macros */
29 29 #define DEF_FREQUENCY_UP_THRESHOLD (80)
30 30 #define DEF_FREQUENCY_DOWN_THRESHOLD (20)
31 31 #define DEF_SAMPLING_DOWN_FACTOR (1)
... ... @@ -144,7 +144,7 @@
144 144  
145 145 /*
146 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 149 if (dbs_info->requested_freq > policy->max
150 150 || dbs_info->requested_freq < policy->min)