Fix some whitespace pollution.

This commit is contained in:
Adrian Chadd 2011-11-21 21:59:01 +00:00
parent 742bbc55b0
commit 5856d663ae

View File

@ -1864,12 +1864,10 @@ ath_txrx_stop(struct ath_softc *sc)
int i = MAX_TXRX_ITERATIONS; int i = MAX_TXRX_ITERATIONS;
ATH_UNLOCK_ASSERT(sc); ATH_UNLOCK_ASSERT(sc);
/* Stop any new TX/RX from occuring */ /* Stop any new TX/RX from occuring */
taskqueue_block(sc->sc_tq); taskqueue_block(sc->sc_tq);
ATH_PCU_LOCK(sc); ATH_PCU_LOCK(sc);
/* /*
* Sleep until all the pending operations have completed. * Sleep until all the pending operations have completed.
* *
@ -1878,7 +1876,7 @@ ath_txrx_stop(struct ath_softc *sc)
*/ */
while (sc->sc_rxproc_cnt || sc->sc_txproc_cnt || while (sc->sc_rxproc_cnt || sc->sc_txproc_cnt ||
sc->sc_txstart_cnt || sc->sc_intr_cnt) { sc->sc_txstart_cnt || sc->sc_intr_cnt) {
if (i <= 0) if (i <= 0)
break; break;
msleep(sc, &sc->sc_mtx, 0, "ath_txrx_stop", 1); msleep(sc, &sc->sc_mtx, 0, "ath_txrx_stop", 1);
i--; i--;