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

Adrian Chadd adrian at FreeBSD.org
Tue Feb 14 20:06:29 UTC 2012


Author: adrian
Date: Tue Feb 14 20:06:28 2012
New Revision: 231709
URL: http://svn.freebsd.org/changeset/base/231709

Log:
  Fix the usefir128 config bit flipping.

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 Feb 14 20:05:28 2012	(r231708)
+++ head/sys/dev/ath/ath_hal/ar5416/ar5416_misc.c	Tue Feb 14 20:06:28 2012	(r231709)
@@ -805,11 +805,10 @@ ar5416EnableDfs(struct ath_hal *ah, HAL_
 	else if (pe->pe_enabled == 0)
 		OS_REG_CLR_BIT(ah, AR_PHY_RADAR_0, AR_PHY_RADAR_0_ENA);
 
-	/* XXX is this around the correct way?! */
 	if (pe->pe_usefir128 == 1)
-		OS_REG_CLR_BIT(ah, AR_PHY_RADAR_1, AR_PHY_RADAR_1_USE_FIR128);
-	else if (pe->pe_usefir128 == 0)
 		OS_REG_SET_BIT(ah, AR_PHY_RADAR_1, AR_PHY_RADAR_1_USE_FIR128);
+	else if (pe->pe_usefir128 == 0)
+		OS_REG_CLR_BIT(ah, AR_PHY_RADAR_1, AR_PHY_RADAR_1_USE_FIR128);
 
 	if (pe->pe_enmaxrssi == 1)
 		OS_REG_SET_BIT(ah, AR_PHY_RADAR_1, AR_PHY_RADAR_1_MAX_RRSSI);


More information about the svn-src-head mailing list