diff options
author | Luciano Coelho <luciano.coelho@intel.com> | 2014-02-20 16:36:21 +0200 |
---|---|---|
committer | Johannes Berg <johannes.berg@intel.com> | 2014-02-21 09:33:10 +0100 |
commit | 7b2106aea2638948806df248215b14efd84c5ffc (patch) | |
tree | 8babafa0ad2b8ea1e1cde737e474e82f7c35f91b /net/wireless/ibss.c | |
parent | e5d2f954714bccd4a87e042720ae8e85f9a0aada (diff) |
cfg80211: remove radar requirements check from cfg80211_can_use_iftype_chan()
We don't have to double check whether the parameters passed to
cfg80211_can_use_iftype_chan() are correct. We should just make sure
they *are* when we call this function.
Remove the radar_detect argument check in
cfg80211_can_use_iftype_chan() to simplify the code.
Signed-off-by: Luciano Coelho <luciano.coelho@intel.com>
[keep braces around a long comment + single statement]
Signed-off-by: Johannes Berg <johannes.berg@intel.com>
Diffstat (limited to 'net/wireless/ibss.c')
-rw-r--r-- | net/wireless/ibss.c | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/net/wireless/ibss.c b/net/wireless/ibss.c index 1470b90e438..349db9ddc0d 100644 --- a/net/wireless/ibss.c +++ b/net/wireless/ibss.c @@ -128,12 +128,11 @@ int __cfg80211_join_ibss(struct cfg80211_registered_device *rdev, #endif check_chan = params->chandef.chan; if (params->userspace_handles_dfs) { - /* use channel NULL to check for radar even if the current - * channel is not a radar channel - it might decide to change - * to DFS channel later. + /* Check for radar even if the current channel is not + * a radar channel - it might decide to change to DFS + * channel later. */ radar_detect_width = BIT(params->chandef.width); - check_chan = NULL; } err = cfg80211_can_use_iftype_chan(rdev, wdev, wdev->iftype, |