From owner-svn-src-all@FreeBSD.ORG Thu Nov 8 17:46:27 2012 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 8D344EF3; Thu, 8 Nov 2012 17:46:27 +0000 (UTC) (envelope-from adrian@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) by mx1.freebsd.org (Postfix) with ESMTP id 72FF08FC08; Thu, 8 Nov 2012 17:46:27 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.5/8.14.5) with ESMTP id qA8HkRVd029250; Thu, 8 Nov 2012 17:46:27 GMT (envelope-from adrian@svn.freebsd.org) Received: (from adrian@localhost) by svn.freebsd.org (8.14.5/8.14.5/Submit) id qA8HkRTu029249; Thu, 8 Nov 2012 17:46:27 GMT (envelope-from adrian@svn.freebsd.org) Message-Id: <201211081746.qA8HkRTu029249@svn.freebsd.org> From: Adrian Chadd Date: Thu, 8 Nov 2012 17:46:27 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r242780 - head/sys/dev/ath X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 08 Nov 2012 17:46:27 -0000 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 */