diff options
| author | tsutsui <tsutsui@NetBSD.org> | 2009-04-27 14:52:50 +0000 |
|---|---|---|
| committer | tsutsui <tsutsui@NetBSD.org> | 2009-04-27 14:52:50 +0000 |
| commit | 9998edcec41ae3bb5fc8f69bdfefaf3a01a6e0c1 (patch) | |
| tree | 6b85578d6f9aeb8fd072400a3bdc2a91e25bc861 /sys/dev | |
| parent | e5d3ecb4f1a125baec92ac7140aac25ae1b7f90e (diff) | |
Wrap one more printf() with #ifdef DEBUG, which was missed on rev 1.52.
Diffstat (limited to 'sys/dev')
| -rw-r--r-- | sys/dev/ic/rtl81x9.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/sys/dev/ic/rtl81x9.c b/sys/dev/ic/rtl81x9.c index 36b350df0c2..9e6d60b9f3a 100644 --- a/sys/dev/ic/rtl81x9.c +++ b/sys/dev/ic/rtl81x9.c @@ -1,4 +1,4 @@ -/* $NetBSD: rtl81x9.c,v 1.85 2009/04/26 16:17:08 tsutsui Exp $ */ +/* $NetBSD: rtl81x9.c,v 1.86 2009/04/27 14:52:50 tsutsui Exp $ */ /* * Copyright (c) 1997, 1998 @@ -86,7 +86,7 @@ */ #include <sys/cdefs.h> -__KERNEL_RCSID(0, "$NetBSD: rtl81x9.c,v 1.85 2009/04/26 16:17:08 tsutsui Exp $"); +__KERNEL_RCSID(0, "$NetBSD: rtl81x9.c,v 1.86 2009/04/27 14:52:50 tsutsui Exp $"); #include "bpfilter.h" #include "rnd.h" @@ -1155,7 +1155,9 @@ rtk_txeof(struct rtk_softc *sc) sc->sc_txthresh * 32); #endif } +#ifdef DEBUG printf("\n"); +#endif } if (txstat & (RTK_TXSTAT_TXABRT|RTK_TXSTAT_OUTOFWIN)) CSR_WRITE_4(sc, RTK_TXCFG, RTK_TXCFG_CONFIG); |
