diff options
| author | Ingo Molnar <mingo@elte.hu> | 2009-08-24 12:25:44 +0200 | 
|---|---|---|
| committer | Ingo Molnar <mingo@elte.hu> | 2009-08-24 12:25:54 +0200 | 
| commit | 5f9ece02401116b29eb04396b99ea092acb75dd8 (patch) | |
| tree | e10386e2dc63c275646b4eb0bed857da7bf86c6a /net/wireless/reg.c | |
| parent | 9f51e24ee8b5a1595b6a5ac0c2be278a16488e75 (diff) | |
| parent | 422bef879e84104fee6dc68ded0e371dbeb5f88e (diff) | |
| download | olio-linux-3.10-5f9ece02401116b29eb04396b99ea092acb75dd8.tar.xz olio-linux-3.10-5f9ece02401116b29eb04396b99ea092acb75dd8.zip  | |
Merge commit 'v2.6.31-rc7' into x86/cleanups
Merge reason: we were on -rc1 before - go up to -rc7
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'net/wireless/reg.c')
| -rw-r--r-- | net/wireless/reg.c | 9 | 
1 files changed, 5 insertions, 4 deletions
diff --git a/net/wireless/reg.c b/net/wireless/reg.c index 5e14371cda7..75a406d3361 100644 --- a/net/wireless/reg.c +++ b/net/wireless/reg.c @@ -1089,17 +1089,18 @@ static void handle_reg_beacon(struct wiphy *wiphy,  	chan->beacon_found = true; +	if (wiphy->disable_beacon_hints) +		return; +  	chan_before.center_freq = chan->center_freq;  	chan_before.flags = chan->flags; -	if ((chan->flags & IEEE80211_CHAN_PASSIVE_SCAN) && -	    !(chan->orig_flags & IEEE80211_CHAN_PASSIVE_SCAN)) { +	if (chan->flags & IEEE80211_CHAN_PASSIVE_SCAN) {  		chan->flags &= ~IEEE80211_CHAN_PASSIVE_SCAN;  		channel_changed = true;  	} -	if ((chan->flags & IEEE80211_CHAN_NO_IBSS) && -	    !(chan->orig_flags & IEEE80211_CHAN_NO_IBSS)) { +	if (chan->flags & IEEE80211_CHAN_NO_IBSS) {  		chan->flags &= ~IEEE80211_CHAN_NO_IBSS;  		channel_changed = true;  	}  |