summaryrefslogtreecommitdiff
path: root/sys/arch
diff options
context:
space:
mode:
authorMiod Vallat <miod@cvs.openbsd.org>2011-09-04 18:46:42 +0000
committerMiod Vallat <miod@cvs.openbsd.org>2011-09-04 18:46:42 +0000
commit2b0d81bcfcfb5abaf79e38d05e10b0b26d02b09c (patch)
tree1b95cebe4ef654d01bee028e64f13460d84cd987 /sys/arch
parent03c9bd06b92f5a2d09c84f0a7249be9b5b11489d (diff)
Silence awacs_trigger_input by turning a noisy printf into the DPRINTF
it was intended to be; reported by Donovan Watteau
Diffstat (limited to 'sys/arch')
-rw-r--r--sys/arch/macppc/dev/awacs.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/macppc/dev/awacs.c b/sys/arch/macppc/dev/awacs.c
index 38cebed5e65..4a1729d35cb 100644
--- a/sys/arch/macppc/dev/awacs.c
+++ b/sys/arch/macppc/dev/awacs.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: awacs.c,v 1.25 2010/07/15 03:43:11 jakemsr Exp $ */
+/* $OpenBSD: awacs.c,v 1.26 2011/09/04 18:46:41 miod Exp $ */
/* $NetBSD: awacs.c,v 1.4 2001/02/26 21:07:51 wiz Exp $ */
/*-
@@ -1072,7 +1072,7 @@ awacs_trigger_input(void *h, void *start, void *end, int bsize,
vaddr_t spa, pa, epa;
int c;
- printf("trigger_input %p %p 0x%x\n", start, end, bsize);
+ DPRINTF(("trigger_input %p %p 0x%x\n", start, end, bsize));
for (p = sc->sc_dmas; p && p->addr != start; p = p->next);
if (!p)