diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2007-06-09 14:21:45 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2007-06-09 14:21:45 +0000 |
commit | 736f845e0c5e0d667d27a54ff532dcced447e360 (patch) | |
tree | 6e4eb3216fa1a4e1fd7a1b82b764b022a61da54f /sys/arch/sparc/dev | |
parent | 8c39d507ee7e0c3e06c96859e499f9390bea2ad7 (diff) |
Silence a debug printf.
Diffstat (limited to 'sys/arch/sparc/dev')
-rw-r--r-- | sys/arch/sparc/dev/si.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sys/arch/sparc/dev/si.c b/sys/arch/sparc/dev/si.c index 7e00384436e..a64c9e4d57c 100644 --- a/sys/arch/sparc/dev/si.c +++ b/sys/arch/sparc/dev/si.c @@ -1,4 +1,4 @@ -/* $OpenBSD: si.c,v 1.25 2006/12/13 21:12:58 miod Exp $ */ +/* $OpenBSD: si.c,v 1.26 2007/06/09 14:21:44 miod Exp $ */ /* $NetBSD: si.c,v 1.38 1997/08/27 11:24:20 bouyer Exp $ */ /*- @@ -649,7 +649,9 @@ si_dma_alloc(ncr_sc) /* If the DMA start addr is misaligned then do PIO */ if ((addr & 1) || (xlen & 1)) { +#ifdef DEBUG printf("si_dma_alloc: misaligned.\n"); +#endif return; } |