svn commit: r252592 - head/sys/dev/cpuctl

Rui Paulo rpaulo at FreeBSD.org
Wed Jul 3 20:19:24 UTC 2013


Author: rpaulo
Date: Wed Jul  3 20:19:23 2013
New Revision: 252592
URL: http://svnweb.freebsd.org/changeset/base/252592

Log:
  Typos in comments.

Modified:
  head/sys/dev/cpuctl/cpuctl.c

Modified: head/sys/dev/cpuctl/cpuctl.c
==============================================================================
--- head/sys/dev/cpuctl/cpuctl.c	Wed Jul  3 20:08:22 2013	(r252591)
+++ head/sys/dev/cpuctl/cpuctl.c	Wed Jul  3 20:19:23 2013	(r252592)
@@ -326,7 +326,7 @@ update_intel(int cpu, cpuctl_update_args
 	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
 	 */
 	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
 	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.


More information about the svn-src-all mailing list