Module Name:    src
Committed By:   jklos
Date:           Tue Nov 24 08:48:25 UTC 2015

Modified Files:
        src/sys/external/isc/atheros_hal/dist/ar5210: ar5210_reset.c

Log Message:
One too many parenthesis removed.


To generate a diff of this commit:
cvs rdiff -u -r1.6 -r1.7 \
    src/sys/external/isc/atheros_hal/dist/ar5210/ar5210_reset.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/sys/external/isc/atheros_hal/dist/ar5210/ar5210_reset.c
diff -u src/sys/external/isc/atheros_hal/dist/ar5210/ar5210_reset.c:1.6 src/sys/external/isc/atheros_hal/dist/ar5210/ar5210_reset.c:1.7
--- src/sys/external/isc/atheros_hal/dist/ar5210/ar5210_reset.c:1.6	Mon Nov 23 23:46:33 2015
+++ src/sys/external/isc/atheros_hal/dist/ar5210/ar5210_reset.c	Tue Nov 24 08:48:25 2015
@@ -14,7 +14,7 @@
  * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
  * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
  *
- * $Id: ar5210_reset.c,v 1.6 2015/11/23 23:46:33 joerg Exp $
+ * $Id: ar5210_reset.c,v 1.7 2015/11/24 08:48:25 jklos Exp $
  */
 #include "opt_ah.h"
 
@@ -504,7 +504,7 @@ ar5210PerCalibrationN(struct ath_hal *ah
 	OS_REG_WRITE(ah, 0x985c,
 		 (reg985c & ~(KCOARSEHIGH_M | KCOARSELOW_M)) |
 		 ((~0U << KCOARSEHIGH_S) & KCOARSEHIGH_M) |
-		 ((((~0U << 7) + 1) << KCOARSELOW_S)) & KCOARSELOW_M));
+		 ((((~0U << 7) + 1) << KCOARSELOW_S) & KCOARSELOW_M));
 	OS_REG_WRITE(ah, 0x9868,
 		 (reg9868 & ~(ADCSAT_ICOUNT_M | ADCSAT_THRESH_M)) |
 		 ((2 << ADCSAT_ICOUNT_S) & ADCSAT_ICOUNT_M) |

Reply via email to