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

This commit is contained in:
Adrian Chadd 2011-05-09 16:49:40 +00:00
parent ecc16c8d3a
commit e8def8942a
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=221700

View File

@ -401,8 +401,9 @@ ar9285FillCapabilityInfo(struct ath_hal *ah)
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;
}