diff options
author | Stanislaw Gruszka <sgruszka@redhat.com> | 2011-11-03 10:40:46 +0100 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2011-11-09 16:01:01 -0500 |
commit | 0b62ffb53c9732e02ec77ae795f1e03cb2f2d406 (patch) | |
tree | c7e4c59f0811c4849704bf41b4916410a2407228 /net/mac80211/main.c | |
parent | 5e5202a406896fb6d656d0e7d3f2f1cbfdda6384 (diff) | |
download | linux-stable-0b62ffb53c9732e02ec77ae795f1e03cb2f2d406.tar.gz linux-stable-0b62ffb53c9732e02ec77ae795f1e03cb2f2d406.tar.bz2 linux-stable-0b62ffb53c9732e02ec77ae795f1e03cb2f2d406.zip |
mac80211: remove useless brackets in ieee80211_cfg_on_oper_channel
Signed-off-by: Stanislaw Gruszka <sgruszka@redhat.com>
Reviewed-by: Johannes Berg <johannes@sipsolutions.net>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'net/mac80211/main.c')
-rw-r--r-- | net/mac80211/main.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/net/mac80211/main.c b/net/mac80211/main.c index 094fd57099cf..7217019d1ed9 100644 --- a/net/mac80211/main.c +++ b/net/mac80211/main.c @@ -126,8 +126,8 @@ bool ieee80211_cfg_on_oper_channel(struct ieee80211_local *local) return false; /* Check current hardware-config against oper_channel. */ - if ((local->oper_channel != local->hw.conf.channel) || - (local->_oper_channel_type != local->hw.conf.channel_type)) + if (local->oper_channel != local->hw.conf.channel || + local->_oper_channel_type != local->hw.conf.channel_type) return false; return true; |