From owner-svn-src-head@FreeBSD.ORG Sat Jul 28 04:40:53 2012 Return-Path: Delivered-To: svn-src-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 13ED9106566B; Sat, 28 Jul 2012 04:40:53 +0000 (UTC) (envelope-from adrian@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id F27928FC0A; Sat, 28 Jul 2012 04:40:52 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.4/8.14.4) with ESMTP id q6S4eq8w084246; Sat, 28 Jul 2012 04:40:52 GMT (envelope-from adrian@svn.freebsd.org) Received: (from adrian@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q6S4eqqc084244; Sat, 28 Jul 2012 04:40:52 GMT (envelope-from adrian@svn.freebsd.org) Message-Id: <201207280440.q6S4eqqc084244@svn.freebsd.org> From: Adrian Chadd Date: Sat, 28 Jul 2012 04:40:52 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r238854 - head/sys/dev/ath X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the src tree for head/-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 28 Jul 2012 04:40:53 -0000 Author: adrian Date: Sat Jul 28 04:40:52 2012 New Revision: 238854 URL: http://svn.freebsd.org/changeset/base/238854 Log: Add a missing call to ath_txdma_teardown(). Modified: head/sys/dev/ath/if_ath.c Modified: head/sys/dev/ath/if_ath.c ============================================================================== --- head/sys/dev/ath/if_ath.c Fri Jul 27 21:38:14 2012 (r238853) +++ head/sys/dev/ath/if_ath.c Sat Jul 28 04:40:52 2012 (r238854) @@ -916,6 +916,7 @@ ath_detach(struct ath_softc *sc) ath_dfs_detach(sc); ath_desc_free(sc); + ath_txdma_teardown(sc); ath_rxdma_teardown(sc); ath_tx_cleanup(sc); ath_hal_detach(sc->sc_ah); /* NB: sets chip in full sleep */