aboutsummaryrefslogtreecommitdiffstats
path: root/net/wireless
diff options
context:
space:
mode:
authorArik Nemtsov <arik@wizery.com>2014-11-16 09:37:47 -0500
committerJohannes Berg <johannes.berg@intel.com>2014-11-19 12:49:33 -0500
commitc7ab508190aee6b4a62cfab7ee08457602468672 (patch)
tree538d6dd6b882d91bb8c3523d49a3bfdd3bb1c5ff /net/wireless
parent2e18b38fc8fb0323804e4a7812cb1a8ea78b9dd7 (diff)
cfg80211: explicitly initialize some fields in custom reg path
Explicitly initialize the DFS state and beacon found state when handling channels in the custom regulatory path. Signed-off-by: Arik Nemtsov <arikx.nemtsov@intel.com> Acked-by: Luis R. Rodriguez <mcgrof@suse.com> Signed-off-by: Johannes Berg <johannes.berg@intel.com>
Diffstat (limited to 'net/wireless')
-rw-r--r--net/wireless/reg.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/net/wireless/reg.c b/net/wireless/reg.c
index a60f391b30a6..32d8310b0f85 100644
--- a/net/wireless/reg.c
+++ b/net/wireless/reg.c
@@ -1598,6 +1598,9 @@ static void handle_channel_custom(struct wiphy *wiphy,
1598 bw_flags |= IEEE80211_CHAN_NO_160MHZ; 1598 bw_flags |= IEEE80211_CHAN_NO_160MHZ;
1599 1599
1600 chan->dfs_state_entered = jiffies; 1600 chan->dfs_state_entered = jiffies;
1601 chan->dfs_state = NL80211_DFS_USABLE;
1602
1603 chan->beacon_found = false;
1601 chan->flags |= map_regdom_flags(reg_rule->flags) | bw_flags; 1604 chan->flags |= map_regdom_flags(reg_rule->flags) | bw_flags;
1602 chan->max_antenna_gain = (int) MBI_TO_DBI(power_rule->max_antenna_gain); 1605 chan->max_antenna_gain = (int) MBI_TO_DBI(power_rule->max_antenna_gain);
1603 chan->max_reg_power = chan->max_power = 1606 chan->max_reg_power = chan->max_power =