diff options
author | Felix Fietkau <nbd@openwrt.org> | 2008-01-28 18:34:06 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2008-01-28 18:34:06 +0000 |
commit | d9ad14d717c122ed6f643e2445acdfeeb6a04e98 (patch) | |
tree | 5b27ea56f984ace688fc88b203418aebe4e9a695 /package/madwifi/patches/325-channel_spam.patch | |
parent | 5f713d6adb6eea0707716abb51455489282150cf (diff) | |
download | upstream-d9ad14d717c122ed6f643e2445acdfeeb6a04e98.tar.gz upstream-d9ad14d717c122ed6f643e2445acdfeeb6a04e98.tar.bz2 upstream-d9ad14d717c122ed6f643e2445acdfeeb6a04e98.zip |
update madwifi to latest trunk, include a few more fixes/improvements
SVN-Revision: 10294
Diffstat (limited to 'package/madwifi/patches/325-channel_spam.patch')
-rw-r--r-- | package/madwifi/patches/325-channel_spam.patch | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/package/madwifi/patches/325-channel_spam.patch b/package/madwifi/patches/325-channel_spam.patch new file mode 100644 index 0000000000..b4b30040a5 --- /dev/null +++ b/package/madwifi/patches/325-channel_spam.patch @@ -0,0 +1,30 @@ +Index: madwifi-trunk-r3280/ath/if_ath.c +=================================================================== +--- madwifi-trunk-r3280.orig/ath/if_ath.c 2008-01-28 19:00:13.666420256 +0100 ++++ madwifi-trunk-r3280/ath/if_ath.c 2008-01-28 19:01:05.093350913 +0100 +@@ -9701,7 +9701,9 @@ + /* + * Convert HAL channels to ieee80211 ones. + */ ++#ifdef AR_DEBUG + IPRINTF(sc, "HAL returned %d channels.\n", nchan); ++#endif + for (i = 0; i < nchan; i++) { + HAL_CHANNEL *c = &chans[i]; + struct ieee80211_channel *ichan = &ic->ic_channels[i]; +@@ -9728,6 +9730,7 @@ + ic->ic_chan_non_occupy[i].tv_sec = 0; + ic->ic_chan_non_occupy[i].tv_usec = 0; + ++#ifdef AR_DEBUG + IPRINTF(sc, "Channel %3d (%4d MHz) Max Tx Power %d dBm%s " + "[%d hw %d reg] Flags%s%s%s%s%s%s%s%s%s%s%s%s%" + "s%s%s%s%s%s%s%s%s%s%s%s\n", +@@ -9816,6 +9819,7 @@ + (c->privFlags & 0x0080 ? + " PF & (1 << 7)" : "") + ); ++#endif + } + ic->ic_nchans = nchan; + kfree(chans); |