svn commit: r259015 - in head/sys: amd64/amd64 i386/i386 pc98/pc98

John Baldwin jhb at FreeBSD.org
Thu Dec 5 21:58:04 UTC 2013


Author: jhb
Date: Thu Dec  5 21:58:02 2013
New Revision: 259015
URL: http://svnweb.freebsd.org/changeset/base/259015

Log:
  Fix a typo.

Modified:
  head/sys/amd64/amd64/machdep.c
  head/sys/i386/i386/machdep.c
  head/sys/pc98/pc98/machdep.c

Modified: head/sys/amd64/amd64/machdep.c
==============================================================================
--- head/sys/amd64/amd64/machdep.c	Thu Dec  5 21:55:10 2013	(r259014)
+++ head/sys/amd64/amd64/machdep.c	Thu Dec  5 21:58:02 2013	(r259015)
@@ -833,7 +833,7 @@ cpu_idle(int busy)
 	/* Call main idle method. */
 	cpu_idle_fn(sbt);
 
-	/* Switch timers mack into active mode. */
+	/* Switch timers back into active mode. */
 	if (!busy) {
 		cpu_activeclock();
 		critical_exit();

Modified: head/sys/i386/i386/machdep.c
==============================================================================
--- head/sys/i386/i386/machdep.c	Thu Dec  5 21:55:10 2013	(r259014)
+++ head/sys/i386/i386/machdep.c	Thu Dec  5 21:58:02 2013	(r259015)
@@ -1416,7 +1416,7 @@ cpu_idle(int busy)
 	/* Call main idle method. */
 	cpu_idle_fn(sbt);
 
-	/* Switch timers mack into active mode. */
+	/* Switch timers back into active mode. */
 	if (!busy) {
 		cpu_activeclock();
 		critical_exit();

Modified: head/sys/pc98/pc98/machdep.c
==============================================================================
--- head/sys/pc98/pc98/machdep.c	Thu Dec  5 21:55:10 2013	(r259014)
+++ head/sys/pc98/pc98/machdep.c	Thu Dec  5 21:58:02 2013	(r259015)
@@ -1228,7 +1228,7 @@ cpu_idle(int busy)
 	/* Call main idle method. */
 	cpu_idle_fn(sbt);
 
-	/* Switch timers mack into active mode. */
+	/* Switch timers back into active mode. */
 	if (!busy) {
 		cpu_activeclock();
 		critical_exit();


More information about the svn-src-head mailing list