Date: Mon, 9 May 2011 16:49:40 +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: r221700 - head/sys/dev/ath/ath_hal/ar9002 Message-ID: <201105091649.p49Gnere004723@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
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; }
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201105091649.p49Gnere004723>