svn commit: r242780 - head/sys/dev/ath

Adrian Chadd adrian at FreeBSD.org
Thu Nov 8 17:46:27 UTC 2012


Author: adrian
Date: Thu Nov  8 17:46:27 2012
New Revision: 242780
URL: http://svnweb.freebsd.org/changeset/base/242780

Log:
  Oops, fix bogus spacing.

Modified:
  head/sys/dev/ath/if_ath_tx_edma.c

Modified: head/sys/dev/ath/if_ath_tx_edma.c
==============================================================================
--- head/sys/dev/ath/if_ath_tx_edma.c	Thu Nov  8 17:43:58 2012	(r242779)
+++ head/sys/dev/ath/if_ath_tx_edma.c	Thu Nov  8 17:46:27 2012	(r242780)
@@ -405,14 +405,14 @@ ath_edma_tx_drain(struct ath_softc *sc, 
 	 *
 	 * 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 */
 


More information about the svn-src-head mailing list