svn commit: r231370 - head/sys/dev/ath

Adrian Chadd adrian at FreeBSD.org
Fri Feb 10 10:09:17 UTC 2012


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);
 	}
 
 	/*


More information about the svn-src-all mailing list