Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 10 Feb 2012 10:09:17 +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: r231370 - head/sys/dev/ath
Message-ID:  <201202101009.q1AA9H7h065978@svn.freebsd.org>

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



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