diff options
author | Felix Fietkau <nbd@openwrt.org> | 2012-10-07 12:50:15 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2012-10-07 12:50:15 +0000 |
commit | a4329ad3cc5a716bc25ea46f78ad52f6ca4d6073 (patch) | |
tree | b1bd865ddc103600da0e66dbdaf6233a0ae3dd96 /package/madwifi/patches/462-fix_ap_scan.patch | |
parent | 5df4ff29731270d24a8ddd67fefcbc630e85ce3d (diff) | |
download | master-187ad058-a4329ad3cc5a716bc25ea46f78ad52f6ca4d6073.tar.gz master-187ad058-a4329ad3cc5a716bc25ea46f78ad52f6ca4d6073.tar.bz2 master-187ad058-a4329ad3cc5a716bc25ea46f78ad52f6ca4d6073.zip |
move a few unmaintained packages from trunk to /packages
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@33634 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/madwifi/patches/462-fix_ap_scan.patch')
-rw-r--r-- | package/madwifi/patches/462-fix_ap_scan.patch | 26 |
1 files changed, 0 insertions, 26 deletions
diff --git a/package/madwifi/patches/462-fix_ap_scan.patch b/package/madwifi/patches/462-fix_ap_scan.patch deleted file mode 100644 index 8798f534ec..0000000000 --- a/package/madwifi/patches/462-fix_ap_scan.patch +++ /dev/null @@ -1,26 +0,0 @@ ---- a/net80211/ieee80211_scan_ap.c -+++ b/net80211/ieee80211_scan_ap.c -@@ -595,6 +595,14 @@ ap_end(struct ieee80211_scan_state *ss, - - ic = vap->iv_ic; - -+ /* if we're already running, switch back to the home channel */ -+ if ((vap->iv_state == IEEE80211_S_RUN) && -+ (ic->ic_bsschan != IEEE80211_CHAN_ANYC)) { -+ ic->ic_curchan = ic->ic_bsschan; -+ ic->ic_set_channel(ic); -+ goto out; -+ } -+ - /* record stats for the channel that was scanned last */ - ic->ic_set_channel(ic); - spin_lock_irqsave(&channel_lock, sflags); -@@ -648,6 +656,8 @@ ap_end(struct ieee80211_scan_state *ss, - IEEE80211_SCHEDULE_TQUEUE(&as->as_actiontq); - res = 1; - } -+ -+out: - SCAN_AP_UNLOCK_IRQ(as); - return res; - } |