svn commit: r218170 - head/sys/dev/ath/ath_hal/ar5416

Adrian Chadd adrian at FreeBSD.org
Tue Feb 1 15:26:30 UTC 2011


Author: adrian
Date: Tue Feb  1 15:26:30 2011
New Revision: 218170
URL: http://svn.freebsd.org/changeset/base/218170

Log:
  Just to be sure, make sure the MCS rates are allowed for TX.
  
  Approved by:	rpaulo@

Modified:
  head/sys/dev/ath/ath_hal/ar5416/ar5416_xmit.c

Modified: head/sys/dev/ath/ath_hal/ar5416/ar5416_xmit.c
==============================================================================
--- head/sys/dev/ath/ath_hal/ar5416/ar5416_xmit.c	Tue Feb  1 14:28:50 2011	(r218169)
+++ head/sys/dev/ath/ath_hal/ar5416/ar5416_xmit.c	Tue Feb  1 15:26:30 2011	(r218170)
@@ -149,8 +149,10 @@ ar5416StopTxDma(struct ath_hal *ah, u_in
 #define VALID_TX_RATES \
         ((1<<0x0b)|(1<<0x0f)|(1<<0x0a)|(1<<0x0e)|(1<<0x09)|(1<<0x0d)|\
          (1<<0x08)|(1<<0x0c)|(1<<0x1b)|(1<<0x1a)|(1<<0x1e)|(1<<0x19)|\
-         (1<<0x1d)|(1<<0x18)|(1<<0x1c))
-#define isValidTxRate(_r)       ((1<<(_r)) & VALID_TX_RATES)
+	 (1<<0x1d)|(1<<0x18)|(1<<0x1c)|(1<<0x01)|(1<<0x02)|(1<<0x03)|\
+	 (1<<0x04)|(1<<0x05)|(1<<0x06)|(1<<0x07)|(1<<0x00))
+/* NB: accept HT rates */
+#define	isValidTxRate(_r)	((1<<((_r) & 0x7f)) & VALID_TX_RATES)
 
 HAL_BOOL
 ar5416SetupTxDesc(struct ath_hal *ah, struct ath_desc *ds,


More information about the svn-src-all mailing list