From 5c79f1f9dfd51a469179fe11902da447dde75b0e Mon Sep 17 00:00:00 2001 From: John Baldwin Date: Thu, 5 Dec 2013 21:58:02 +0000 Subject: [PATCH] Fix a typo. --- sys/amd64/amd64/machdep.c | 2 +- sys/i386/i386/machdep.c | 2 +- sys/pc98/pc98/machdep.c | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/sys/amd64/amd64/machdep.c b/sys/amd64/amd64/machdep.c index 31614f7c22d6..eae657b877cf 100644 --- a/sys/amd64/amd64/machdep.c +++ b/sys/amd64/amd64/machdep.c @@ -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(); diff --git a/sys/i386/i386/machdep.c b/sys/i386/i386/machdep.c index 4f001a585101..d43abbf512ac 100644 --- a/sys/i386/i386/machdep.c +++ b/sys/i386/i386/machdep.c @@ -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(); diff --git a/sys/pc98/pc98/machdep.c b/sys/pc98/pc98/machdep.c index aec04c04fce3..0146cf32c192 100644 --- a/sys/pc98/pc98/machdep.c +++ b/sys/pc98/pc98/machdep.c @@ -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();