diff options
author | adrian <adrian@FreeBSD.org> | 2012-11-08 17:46:27 +0000 |
---|---|---|
committer | adrian <adrian@FreeBSD.org> | 2012-11-08 17:46:27 +0000 |
commit | 4ccd9e456e0092d6323c9da4a2ce00c841fba963 (patch) | |
tree | b0323bf61c428d689f98b7a0aef54c80cbf2a3d7 | |
parent | 51dea34a6e83e3bf1e3c5fa04490676930db928e (diff) | |
download | FreeBSD-src-4ccd9e456e0092d6323c9da4a2ce00c841fba963.zip FreeBSD-src-4ccd9e456e0092d6323c9da4a2ce00c841fba963.tar.gz |
Oops, fix bogus spacing.
-rw-r--r-- | sys/dev/ath/if_ath_tx_edma.c | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/sys/dev/ath/if_ath_tx_edma.c b/sys/dev/ath/if_ath_tx_edma.c index ae1bf85..57e180b 100644 --- a/sys/dev/ath/if_ath_tx_edma.c +++ b/sys/dev/ath/if_ath_tx_edma.c @@ -405,14 +405,14 @@ ath_edma_tx_drain(struct ath_softc *sc, ATH_RESET_TYPE reset_type) * * Otherwise, just toss everything in each TX queue. */ - if (reset_type == ATH_RESET_NOLOSS) { - ath_edma_tx_processq(sc, 0); - } else { - for (i = 0; i < HAL_NUM_TX_QUEUES; i++) { - if (ATH_TXQ_SETUP(sc, i)) - ath_tx_draintxq(sc, &sc->sc_txq[i]); - } - } + if (reset_type == ATH_RESET_NOLOSS) { + ath_edma_tx_processq(sc, 0); + } else { + for (i = 0; i < HAL_NUM_TX_QUEUES; i++) { + if (ATH_TXQ_SETUP(sc, i)) + ath_tx_draintxq(sc, &sc->sc_txq[i]); + } + } /* XXX dump out the TX completion FIFO contents */ |