diff options
author | adrian <adrian@FreeBSD.org> | 2012-11-04 00:46:01 +0000 |
---|---|---|
committer | adrian <adrian@FreeBSD.org> | 2012-11-04 00:46:01 +0000 |
commit | 03af321bdf8027c1f5dee0937267e4cea7815559 (patch) | |
tree | 5755ed48547883a6fc82f72b1fc5d037c86c3184 | |
parent | 35cb5e8a859239baecd5223b03e9a410078d9936 (diff) | |
download | FreeBSD-src-03af321bdf8027c1f5dee0937267e4cea7815559.zip FreeBSD-src-03af321bdf8027c1f5dee0937267e4cea7815559.tar.gz |
Oops - conditionalise that.
-rw-r--r-- | sys/dev/ath/if_ath_tx_edma.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/sys/dev/ath/if_ath_tx_edma.c b/sys/dev/ath/if_ath_tx_edma.c index 872e63d..0c75377 100644 --- a/sys/dev/ath/if_ath_tx_edma.c +++ b/sys/dev/ath/if_ath_tx_edma.c @@ -449,7 +449,9 @@ ath_edma_tx_proc(void *arg, int npending) ATH_TXSTATUS_LOCK(sc); status = ath_hal_txprocdesc(ah, NULL, (void *) &ts); +#ifdef ATH_DEBUG ath_hal_gettxrawtxdesc(ah, txstatus); +#endif ATH_TXSTATUS_UNLOCK(sc); #ifdef ATH_DEBUG |