diff options
author | Dale Rahn <drahn@cvs.openbsd.org> | 2008-05-02 06:46:08 +0000 |
---|---|---|
committer | Dale Rahn <drahn@cvs.openbsd.org> | 2008-05-02 06:46:08 +0000 |
commit | 7f740532bb7e0e07efa3aea9fae9139a1f135642 (patch) | |
tree | ba9d6423057b93ddeb185d815b1e657680e2d2cc /sys | |
parent | 2dc79339f4054c4129c131a829e938d438a072b5 (diff) |
Remove debug prints.
Diffstat (limited to 'sys')
-rw-r--r-- | sys/arch/macppc/macppc/cpu.c | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/sys/arch/macppc/macppc/cpu.c b/sys/arch/macppc/macppc/cpu.c index 938bffbe06f..6fe11012543 100644 --- a/sys/arch/macppc/macppc/cpu.c +++ b/sys/arch/macppc/macppc/cpu.c @@ -1,4 +1,4 @@ -/* $OpenBSD: cpu.c,v 1.55 2008/05/01 08:25:32 kettenis Exp $ */ +/* $OpenBSD: cpu.c,v 1.56 2008/05/02 06:46:07 drahn Exp $ */ /* * Copyright (c) 1997 Per Fogelstrom @@ -649,11 +649,9 @@ cpu_spinup(struct device *self, struct cpu_info *ci) delay(500000); } - printf("cpu%d: timebase %llx\n", cpu_number(), ppc_mftb()); for (i = 0; i < 0x3fffffff; i++) if (h->running) { - printf("running\n"); break; } @@ -761,9 +759,6 @@ cpu_hatch(void) __asm volatile ("sync; isync"); - printf("cpu%d: running\n", cpu_number()); - printf("cpu%d: timebase %llx\n", cpu_number(), ppc_mftb()); - curcpu()->ci_ipending = 0; curcpu()->ci_cpl = 0; |