Author: adrian
Date: Tue Oct 25 23:14:40 2011
New Revision: 226761
URL: http://svn.freebsd.org/changeset/base/226761

Log:
  Fix an incorrect flag.
  
  Obtained from:        Atheros

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

Modified: head/sys/dev/ath/ath_hal/ar5416/ar5416_misc.c
==============================================================================
--- head/sys/dev/ath/ath_hal/ar5416/ar5416_misc.c       Tue Oct 25 23:13:36 
2011        (r226760)
+++ head/sys/dev/ath/ath_hal/ar5416/ar5416_misc.c       Tue Oct 25 23:14:40 
2011        (r226761)
@@ -284,7 +284,7 @@ ar5416Get11nRxClear(struct ath_hal *ah)
         rxclear |= HAL_RX_CLEAR_CTL_LOW;
     }
     /* extension channel */
-    if (val & AR_DIAG_RXCLEAR_CTL_LOW) {
+    if (val & AR_DIAG_RXCLEAR_EXT_LOW) {
         rxclear |= HAL_RX_CLEAR_EXT_LOW;
     }
     return rxclear;
_______________________________________________
[email protected] mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-head
To unsubscribe, send any mail to "[email protected]"

Reply via email to