1 Index: madwifi-dfs-r3053/ath/if_ath.c
2 ===================================================================
3 --- madwifi-dfs-r3053.orig/ath/if_ath.c 2007-12-13 05:25:14.210435274 +0100
4 +++ madwifi-dfs-r3053/ath/if_ath.c 2007-12-13 05:25:14.558455106 +0100
6 /* XXXAPSD: build in check against max triggers we could see
7 * based on ic->ic_uapsdmaxtriggers. */
8 hw_tsf = ath_hal_gettsf64(ah);
9 - ic->ic_channoise = ath_hal_get_channel_noise(ah, &(sc->sc_curchan));
11 ATH_RXBUF_LOCK_IRQ(sc);
12 if (sc->sc_rxbufcur == NULL)
14 if (ath_calinterval == ATH_LONG_CALINTERVAL)
15 ath_calinterval = ATH_SHORT_CALINTERVAL;
17 + ic->ic_channoise = ath_hal_get_channel_noise(ah, &(sc->sc_curchan));
19 DPRINTF(sc, ATH_DEBUG_CALIBRATE, "%s: channel %u/%x -- IQ %s.\n",
20 __func__, sc->sc_curchan.channel, sc->sc_curchan.channelFlags,
22 struct ath_softc *sc = dev->priv;
24 (void) ath_chan_set(sc, ic->ic_curchan);
25 + ic->ic_channoise = ath_hal_get_channel_noise(sc->sc_ah, &(sc->sc_curchan));
27 * If we are returning to our bss channel then mark state
28 * so the next recv'd beacon's TSF will be used to sync the
32 ath_hal_process_noisefloor(ah);
33 + ic->ic_channoise = ath_hal_get_channel_noise(ah, &(sc->sc_curchan));
35 * Reset rssi stats; maybe not the best place...