Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 5 Dec 2013 21:58:03 +0000 (UTC)
From:      John Baldwin <jhb@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r259015 - in head/sys: amd64/amd64 i386/i386 pc98/pc98
Message-ID:  <201312052158.rB5Lw3rD032794@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
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();



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201312052158.rB5Lw3rD032794>