diff options
author | Felix Fietkau <nbd@openwrt.org> | 2008-07-17 02:30:08 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2008-07-17 02:30:08 +0000 |
commit | ba605c7bf0305cb42febac3e7d74fd7d80796a72 (patch) | |
tree | 547d05d8319b3931a4fa1e5b1a5cbd543af52361 /package/madwifi/patches-r3776/302-noise_get.patch | |
parent | c9694199b4d8289f52bf27b9d4e5e2bc78b3e72e (diff) | |
download | upstream-ba605c7bf0305cb42febac3e7d74fd7d80796a72.tar.gz upstream-ba605c7bf0305cb42febac3e7d74fd7d80796a72.tar.bz2 upstream-ba605c7bf0305cb42febac3e7d74fd7d80796a72.zip |
huge madwifi update (work in progress, disabled by default, compiles but breaks at run time)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@11851 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/madwifi/patches-r3776/302-noise_get.patch')
-rw-r--r-- | package/madwifi/patches-r3776/302-noise_get.patch | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/package/madwifi/patches-r3776/302-noise_get.patch b/package/madwifi/patches-r3776/302-noise_get.patch new file mode 100644 index 0000000000..98440f76a0 --- /dev/null +++ b/package/madwifi/patches-r3776/302-noise_get.patch @@ -0,0 +1,44 @@ +Index: madwifi-trunk-r3776/ath/if_ath.c +=================================================================== +--- madwifi-trunk-r3776.orig/ath/if_ath.c 2008-07-17 01:46:44.000000000 +0200 ++++ madwifi-trunk-r3776/ath/if_ath.c 2008-07-17 01:49:58.000000000 +0200 +@@ -8996,6 +8996,7 @@ + ATH_LONG_CALINTERVAL_SECS : + ATH_SHORT_CALINTERVAL_SECS; + } ++ ic->ic_channoise = ath_hal_get_channel_noise(ah, &(sc->sc_curchan)); + + DPRINTF(sc, ATH_DEBUG_CALIBRATE, "Channel %u [flags=%04x] -- IQ %s.\n", + sc->sc_curchan.channel, sc->sc_curchan.channelFlags, +@@ -9051,6 +9052,7 @@ + struct ath_softc *sc = dev->priv; + + (void) ath_chan_set(sc, ic->ic_curchan); ++ ic->ic_channoise = ath_hal_get_channel_noise(sc->sc_ah, &(sc->sc_curchan)); + /* + * If we are returning to our bss channel then mark state + * so the next recv'd beacon's TSF will be used to sync the +Index: madwifi-trunk-r3776/net80211/ieee80211_wireless.c +=================================================================== +--- madwifi-trunk-r3776.orig/net80211/ieee80211_wireless.c 2008-07-17 00:53:20.000000000 +0200 ++++ madwifi-trunk-r3776/net80211/ieee80211_wireless.c 2008-07-17 01:49:58.000000000 +0200 +@@ -4396,6 +4396,7 @@ + si->isi_state = ni->ni_flags; + si->isi_authmode = ni->ni_authmode; + si->isi_rssi = ic->ic_node_getrssi(ni); ++ si->isi_noise = ic->ic_channoise; + si->isi_capinfo = ni->ni_capinfo; + si->isi_athflags = ni->ni_ath_flags; + si->isi_erp = ni->ni_erp; +Index: madwifi-trunk-r3776/net80211/ieee80211_ioctl.h +=================================================================== +--- madwifi-trunk-r3776.orig/net80211/ieee80211_ioctl.h 2008-07-17 00:21:29.000000000 +0200 ++++ madwifi-trunk-r3776/net80211/ieee80211_ioctl.h 2008-07-17 01:49:58.000000000 +0200 +@@ -312,6 +312,7 @@ + u_int16_t isi_state; /* state flags */ + u_int8_t isi_authmode; /* authentication algorithm */ + u_int8_t isi_rssi; ++ int8_t isi_noise; + u_int16_t isi_capinfo; /* capabilities */ + u_int8_t isi_athflags; /* Atheros capabilities */ + u_int8_t isi_erp; /* ERP element */ |