svn commit: r365888 - head/sys/contrib/dev/ath/ath_hal/ar9300

Ed Maste emaste at FreeBSD.org
Fri Sep 18 18:35:19 UTC 2020


Author: emaste
Date: Fri Sep 18 18:35:18 2020
New Revision: 365888
URL: https://svnweb.freebsd.org/changeset/base/365888

Log:
  ys/contrib/dev/ath: remove unintentional double semicolon
  
  Approved by:	adrian

Modified:
  head/sys/contrib/dev/ath/ath_hal/ar9300/ar9300_reset.c

Modified: head/sys/contrib/dev/ath/ath_hal/ar9300/ar9300_reset.c
==============================================================================
--- head/sys/contrib/dev/ath/ath_hal/ar9300/ar9300_reset.c	Fri Sep 18 17:17:46 2020	(r365887)
+++ head/sys/contrib/dev/ath/ath_hal/ar9300/ar9300_reset.c	Fri Sep 18 18:35:18 2020	(r365888)
@@ -3879,7 +3879,7 @@ ar9300_init_cal_internal(struct ath_hal *ah, struct ie
                 cl_tab_reg = BB_cl_tab_b[ch_idx];
                 for (j = 0; j < BB_cl_tab_entry; j++) {
                     OS_REG_WRITE(ah, cl_tab_reg, ichan->tx_clcal[ch_idx][j]);
-                    cl_tab_reg += 4;;
+                    cl_tab_reg += 4;
                 }
             }
             HALDEBUG(ah, HAL_DEBUG_FCS_RTT,


More information about the svn-src-all mailing list