From e8def8942a147c861da0efb32008be097ad98ef3 Mon Sep 17 00:00:00 2001 From: Adrian Chadd Date: Mon, 9 May 2011 16:49:40 +0000 Subject: [PATCH] Disable TX STBC - it isn't used for now, but it isn't supported on Kite. --- sys/dev/ath/ath_hal/ar9002/ar9285_attach.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/sys/dev/ath/ath_hal/ar9002/ar9285_attach.c b/sys/dev/ath/ath_hal/ar9002/ar9285_attach.c index 653b586e77f..129f094079f 100644 --- a/sys/dev/ath/ath_hal/ar9002/ar9285_attach.c +++ b/sys/dev/ath/ath_hal/ar9002/ar9285_attach.c @@ -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; }