summaryrefslogtreecommitdiffstats
path: root/net/mac80211/main.c
diff options
context:
space:
mode:
authorStanislaw Gruszka2011-11-03 10:40:46 +0100
committerJohn W. Linville2011-11-09 22:01:01 +0100
commit0b62ffb53c9732e02ec77ae795f1e03cb2f2d406 (patch)
treec7e4c59f0811c4849704bf41b4916410a2407228 /net/mac80211/main.c
parentmac80211: remove uneeded scan_chan variable (diff)
downloadkernel-qcow2-linux-0b62ffb53c9732e02ec77ae795f1e03cb2f2d406.tar.gz
kernel-qcow2-linux-0b62ffb53c9732e02ec77ae795f1e03cb2f2d406.tar.xz
kernel-qcow2-linux-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.c4
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;