c534eecce9985b28d0509b6a75194c711af9dc23
[openwrt/openwrt.git] / package / madwifi / patches / 328-ani_stuff.patch
1 Index: madwifi-trunk-r3314/ath/if_ath.c
2 ===================================================================
3 --- madwifi-trunk-r3314.orig/ath/if_ath.c 2008-01-31 03:59:25.474330368 +0100
4 +++ madwifi-trunk-r3314/ath/if_ath.c 2008-01-31 04:00:30.254021949 +0100
5 @@ -6686,8 +6686,9 @@
6
7 *budget -= processed;
8
9 - /* rx signal state monitoring */
10 - ath_hal_rxmonitor(ah, &sc->sc_halstats, &sc->sc_curchan);
11 + /* rx signal state monitoring, only necessary/applicable for sta mode */
12 + if (sc->sc_opmode == HAL_M_STA)
13 + ath_hal_rxmonitor(ah, &sc->sc_halstats, &sc->sc_curchan);
14 return early_stop;
15 #undef PA2DESC
16 }