fix sstrip compile on mac os x
[openwrt-10.03/.git] / package / madwifi / patches / 310-noise_get.patch
1 Index: madwifi-ng-r2978-20071127/ath/if_ath.c
2 ===================================================================
3 --- madwifi-ng-r2978-20071127.orig/ath/if_ath.c 2007-11-27 21:59:09.565984878 +0100
4 +++ madwifi-ng-r2978-20071127/ath/if_ath.c      2007-11-27 22:01:09.964846018 +0100
5 @@ -1597,7 +1597,6 @@
6          * Wireshark and Kismet.
7          */
8         hw_tsf = ath_hal_gettsf64(ah);
9 -       ic->ic_channoise = ath_hal_get_channel_noise(ah, &(sc->sc_curchan));
10  
11         ATH_RXBUF_LOCK_IRQ(sc);
12         if (sc->sc_rxbufcur == NULL)
13 @@ -8536,6 +8535,7 @@
14                 if (ath_calinterval == ATH_LONG_CALINTERVAL)
15                         ath_calinterval = ATH_SHORT_CALINTERVAL;
16         }
17 +       ic->ic_channoise = ath_hal_get_channel_noise(ah, &(sc->sc_curchan));
18  
19         DPRINTF(sc, ATH_DEBUG_CALIBRATE, "%s: channel %u/%x -- IQ %s.\n",
20                 __func__, sc->sc_curchan.channel, sc->sc_curchan.channelFlags,
21 @@ -8590,6 +8590,7 @@
22         struct ath_softc *sc = dev->priv;
23  
24         (void) ath_chan_set(sc, ic->ic_curchan);
25 +       ic->ic_channoise = ath_hal_get_channel_noise(sc->sc_ah, &(sc->sc_curchan));
26         /*
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
29 @@ -8812,6 +8813,7 @@
30                 }
31  
32                 ath_hal_process_noisefloor(ah);
33 +               ic->ic_channoise = ath_hal_get_channel_noise(ah, &(sc->sc_curchan));
34                 /*
35                  * Configure the beacon and sleep timers.
36                  */