From owner-svn-src-all@FreeBSD.ORG Fri Feb 10 10:09:17 2012 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A28BA106566B; Fri, 10 Feb 2012 10:09:17 +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 913338FC08; Fri, 10 Feb 2012 10:09:17 +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 q1AA9HYZ065980; Fri, 10 Feb 2012 10:09:17 GMT (envelope-from adrian@svn.freebsd.org) Received: (from adrian@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q1AA9H7h065978; Fri, 10 Feb 2012 10:09:17 GMT (envelope-from adrian@svn.freebsd.org) Message-Id: <201202101009.q1AA9H7h065978@svn.freebsd.org> From: Adrian Chadd Date: Fri, 10 Feb 2012 10:09:17 +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: r231370 - head/sys/dev/ath X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 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: Fri, 10 Feb 2012 10:09:17 -0000 Author: adrian Date: Fri Feb 10 10:09:16 2012 New Revision: 231370 URL: http://svn.freebsd.org/changeset/base/231370 Log: .. oops, use the right chainmask. Modified: head/sys/dev/ath/if_ath.c Modified: head/sys/dev/ath/if_ath.c ============================================================================== --- head/sys/dev/ath/if_ath.c Fri Feb 10 10:01:09 2012 (r231369) +++ head/sys/dev/ath/if_ath.c Fri Feb 10 10:09:16 2012 (r231370) @@ -654,7 +654,7 @@ ath_attach(u_int16_t devid, struct ath_s &tx_chainmask) == 0) { device_printf(sc->sc_dev, "Setting TX chainmask to 0x%x\n", tx_chainmask); - (void) ath_hal_settxchainmask(sc->sc_ah, rx_chainmask); + (void) ath_hal_settxchainmask(sc->sc_ah, tx_chainmask); } /*