diff options
author | jhb <jhb@FreeBSD.org> | 2013-12-05 21:58:02 +0000 |
---|---|---|
committer | jhb <jhb@FreeBSD.org> | 2013-12-05 21:58:02 +0000 |
commit | 0f5dd6ee19e8b6d31f364b89fbb23662e87f21e1 (patch) | |
tree | 0186df54d4d007cfb8f063d3bdba8f63f75e5a8f | |
parent | d4261af73d8f99cde76479e6cf98b2e0e61925b2 (diff) | |
download | FreeBSD-src-0f5dd6ee19e8b6d31f364b89fbb23662e87f21e1.zip FreeBSD-src-0f5dd6ee19e8b6d31f364b89fbb23662e87f21e1.tar.gz |
Fix a typo.
-rw-r--r-- | sys/amd64/amd64/machdep.c | 2 | ||||
-rw-r--r-- | sys/i386/i386/machdep.c | 2 | ||||
-rw-r--r-- | 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 31614f7..eae657b 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 4f001a5..d43abbf 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 aec04c0..0146cf3 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(); |