ath9k: don't run periodic and nf calibation at the same time
authorFelix Fietkau <nbd@nbd.name>
Mon, 30 Jul 2018 18:31:17 +0000 (21:31 +0300)
committerKalle Valo <kvalo@codeaurora.org>
Tue, 31 Jul 2018 07:51:43 +0000 (10:51 +0300)
The checks already prevents periodic cal from being started while noise
floor calibration runs. It is missing checks for the other way around.

Signed-off-by: Felix Fietkau <nbd@nbd.name>
Signed-off-by: Kalle Valo <kvalo@codeaurora.org>
drivers/net/wireless/ath/ath9k/ar9002_calib.c

index 50fcd34..fd9db8c 100644 (file)
@@ -676,10 +676,10 @@ static int ar9002_hw_calibrate(struct ath_hw *ah, struct ath9k_channel *chan,
                        return 0;
 
                ah->cal_list_curr = currCal = currCal->calNext;
-               if (currCal->calState == CAL_WAITING) {
+               if (currCal->calState == CAL_WAITING)
                        ath9k_hw_reset_calibration(ah, currCal);
-                       return 0;
-               }
+
+               return 0;
        }
 
        /* Do NF cal only at longer intervals */