Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 8 Nov 2012 17:46:27 +0000 (UTC)
From:      Adrian Chadd <adrian@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r242780 - head/sys/dev/ath
Message-ID:  <201211081746.qA8HkRTu029249@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
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 */
 



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201211081746.qA8HkRTu029249>