Commit c03c3013747a4c9e01d1b48637e6dd0ea3ef65c1
Committed by
Jiri Kosina
1 parent
4fec54203f
Exists in
smarc-l5.0.0_1.0.0-ga
and in
5 other branches
cpufreq: Fix typo in cpufreq driver
Correct spelling typo in cpufreq driver. Signed-off-by: Masanari Iida <standby24x7@gmail.com> Signed-off-by: Jiri Kosina <jkosina@suse.cz>
Showing 2 changed files with 3 additions and 3 deletions Side-by-side Diff
drivers/cpufreq/s3c2416-cpufreq.c
... | ... | @@ -153,7 +153,7 @@ |
153 | 153 | if (s3c_freq->vddarm) { |
154 | 154 | dvfs = &s3c2416_dvfs_table[idx]; |
155 | 155 | |
156 | - pr_debug("cpufreq: setting regultor to %d-%d\n", | |
156 | + pr_debug("cpufreq: setting regulator to %d-%d\n", | |
157 | 157 | dvfs->vddarm_min, dvfs->vddarm_max); |
158 | 158 | ret = regulator_set_voltage(s3c_freq->vddarm, |
159 | 159 | dvfs->vddarm_min, |
... | ... | @@ -186,7 +186,7 @@ |
186 | 186 | if (s3c_freq->vddarm) { |
187 | 187 | dvfs = &s3c2416_dvfs_table[idx]; |
188 | 188 | |
189 | - pr_debug("cpufreq: setting regultor to %d-%d\n", | |
189 | + pr_debug("cpufreq: setting regulator to %d-%d\n", | |
190 | 190 | dvfs->vddarm_min, dvfs->vddarm_max); |
191 | 191 | ret = regulator_set_voltage(s3c_freq->vddarm, |
192 | 192 | dvfs->vddarm_min, |
drivers/cpufreq/speedstep-ich.c
... | ... | @@ -203,7 +203,7 @@ |
203 | 203 | if (speedstep_chipset_dev) { |
204 | 204 | /* speedstep.c causes lockups on Dell Inspirons 8000 and |
205 | 205 | * 8100 which use a pretty old revision of the 82815 |
206 | - * host brige. Abort on these systems. | |
206 | + * host bridge. Abort on these systems. | |
207 | 207 | */ |
208 | 208 | static struct pci_dev *hostbridge; |
209 | 209 |