summaryrefslogtreecommitdiffstats
path: root/sys/dev/cpuctl
diff options
context:
space:
mode:
authorrpaulo <rpaulo@FreeBSD.org>2013-07-03 20:19:23 +0000
committerrpaulo <rpaulo@FreeBSD.org>2013-07-03 20:19:23 +0000
commit9167aad4e6e7d42bf5eb4a93684c79701a10c4cc (patch)
treeaa1ddc4fac100f6b289100ff590bb7baa1c580d0 /sys/dev/cpuctl
parentc4c2416223305bd639dcbab27545f50a1ac1f8cf (diff)
downloadFreeBSD-src-9167aad4e6e7d42bf5eb4a93684c79701a10c4cc.zip
FreeBSD-src-9167aad4e6e7d42bf5eb4a93684c79701a10c4cc.tar.gz
Typos in comments.
Diffstat (limited to 'sys/dev/cpuctl')
-rw-r--r--sys/dev/cpuctl/cpuctl.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/dev/cpuctl/cpuctl.c b/sys/dev/cpuctl/cpuctl.c
index 742fa10..c5f27ac 100644
--- a/sys/dev/cpuctl/cpuctl.c
+++ b/sys/dev/cpuctl/cpuctl.c
@@ -326,7 +326,7 @@ update_intel(int cpu, cpuctl_update_args_t *args, struct thread *td)
is_bound = cpu_sched_is_bound(td);
set_cpu(cpu, td);
critical_enter();
- rdmsr_safe(MSR_BIOS_SIGN, &rev0); /* Get current micorcode revision. */
+ rdmsr_safe(MSR_BIOS_SIGN, &rev0); /* Get current microcode revision. */
/*
* Perform update.
@@ -339,7 +339,7 @@ update_intel(int cpu, cpuctl_update_args_t *args, struct thread *td)
*/
do_cpuid(0, tmp);
critical_exit();
- rdmsr_safe(MSR_BIOS_SIGN, &rev1); /* Get new micorcode revision. */
+ rdmsr_safe(MSR_BIOS_SIGN, &rev1); /* Get new microcode revision. */
restore_cpu(oldcpu, is_bound, td);
if (rev1 > rev0)
ret = 0;
@@ -440,7 +440,7 @@ update_via(int cpu, cpuctl_update_args_t *args, struct thread *td)
is_bound = cpu_sched_is_bound(td);
set_cpu(cpu, td);
critical_enter();
- rdmsr_safe(MSR_BIOS_SIGN, &rev0); /* Get current micorcode revision. */
+ rdmsr_safe(MSR_BIOS_SIGN, &rev0); /* Get current microcode revision. */
/*
* Perform update.
OpenPOWER on IntegriCloud