303-ath9k-don-t-run-periodic-and-nf-calibation-at-the-sa.patch 792 B

123456789101112131415161718192021222324252627
  1. From: Felix Fietkau <nbd@nbd.name>
  2. Date: Tue, 27 Dec 2016 23:16:23 +0100
  3. Subject: [PATCH] ath9k: don't run periodic and nf calibation at the same
  4. time
  5. The checks already prevents periodic cal from being started while noise
  6. floor calibration runs. It is missing checks for the other way around.
  7. Signed-off-by: Felix Fietkau <nbd@nbd.name>
  8. ---
  9. --- a/drivers/net/wireless/ath/ath9k/ar9002_calib.c
  10. +++ b/drivers/net/wireless/ath/ath9k/ar9002_calib.c
  11. @@ -676,10 +676,10 @@ static int ar9002_hw_calibrate(struct at
  12. return 0;
  13. ah->cal_list_curr = currCal = currCal->calNext;
  14. - if (currCal->calState == CAL_WAITING) {
  15. + if (currCal->calState == CAL_WAITING)
  16. ath9k_hw_reset_calibration(ah, currCal);
  17. - return 0;
  18. - }
  19. +
  20. + return 0;
  21. }
  22. /* Do NF cal only at longer intervals */