ath9k: Check beaconing mode properly
authorSujith Manoharan <c_manoha@qca.qualcomm.com>
Mon, 15 Sep 2014 05:55:51 +0000 (11:25 +0530)
committerJohn W. Linville <linville@tuxdriver.com>
Mon, 15 Sep 2014 19:00:54 +0000 (15:00 -0400)
In MCC mode, the TSF of a context needs to be
adjusted only if it is GO/AP.

Signed-off-by: Sujith Manoharan <c_manoha@qca.qualcomm.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
drivers/net/wireless/ath/ath9k/channel.c

index e2712b0..77c99eb 100644 (file)
@@ -260,6 +260,9 @@ static void ath_chanctx_adjust_tbtt_delta(struct ath_softc *sc)
        cur = sc->cur_chan;
        prev = ath_chanctx_get_next(sc, cur);
 
+       if (!prev->switch_after_beacon)
+               return;
+
        getrawmonotonic(&ts);
        cur_tsf = (u32) cur->tsf_val +
                  ath9k_hw_get_tsf_offset(&cur->tsf_ts, &ts);