svn commit: r221700 - head/sys/dev/ath/ath_hal/ar9002

Adrian Chadd adrian at FreeBSD.org
Mon May 9 16:49:40 UTC 2011


Author: adrian
Date: Mon May  9 16:49:40 2011
New Revision: 221700
URL: http://svn.freebsd.org/changeset/base/221700

Log:
  Disable TX STBC - it isn't used for now, but it isn't supported on Kite.

Modified:
  head/sys/dev/ath/ath_hal/ar9002/ar9285_attach.c

Modified: head/sys/dev/ath/ath_hal/ar9002/ar9285_attach.c
==============================================================================
--- head/sys/dev/ath/ath_hal/ar9002/ar9285_attach.c	Mon May  9 16:47:13 2011	(r221699)
+++ head/sys/dev/ath/ath_hal/ar9002/ar9285_attach.c	Mon May  9 16:49:40 2011	(r221700)
@@ -401,8 +401,9 @@ ar9285FillCapabilityInfo(struct ath_hal 
 	if (AR_SREV_KITE_12_OR_LATER(ah))
 		pCap->halPSPollBroken = AH_FALSE;
 
+	/* Only RX STBC supported */
 	pCap->halRxStbcSupport = 1;
-	pCap->halTxStbcSupport = 1;
+	pCap->halTxStbcSupport = 0;
 
 	return AH_TRUE;
 }


More information about the svn-src-head mailing list