Commit 0b62ffb5 authored by Stanislaw Gruszka's avatar Stanislaw Gruszka Committed by John W. Linville

mac80211: remove useless brackets in ieee80211_cfg_on_oper_channel

Signed-off-by: default avatarStanislaw Gruszka <sgruszka@redhat.com>
Reviewed-by: default avatarJohannes Berg <johannes@sipsolutions.net>
Signed-off-by: default avatarJohn W. Linville <linville@tuxdriver.com>
parent 5e5202a4
...@@ -126,8 +126,8 @@ bool ieee80211_cfg_on_oper_channel(struct ieee80211_local *local) ...@@ -126,8 +126,8 @@ bool ieee80211_cfg_on_oper_channel(struct ieee80211_local *local)
return false; return false;
/* Check current hardware-config against oper_channel. */ /* Check current hardware-config against oper_channel. */
if ((local->oper_channel != local->hw.conf.channel) || if (local->oper_channel != local->hw.conf.channel ||
(local->_oper_channel_type != local->hw.conf.channel_type)) local->_oper_channel_type != local->hw.conf.channel_type)
return false; return false;
return true; return true;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment