Commit d9d8b019 authored by Johannes Berg's avatar Johannes Berg

nl80211: remove unnecessary checks

The CQM TX-error rate/interval can't be less than
zero since they're unsigned values, remove checks.
Also fix indentation of the function.
Signed-off-by: default avatarJohannes Berg <johannes.berg@intel.com>
parent 339afbf4
...@@ -6561,8 +6561,7 @@ static int nl80211_set_cqm_txe(struct genl_info *info, ...@@ -6561,8 +6561,7 @@ static int nl80211_set_cqm_txe(struct genl_info *info,
struct wireless_dev *wdev; struct wireless_dev *wdev;
struct net_device *dev = info->user_ptr[1]; struct net_device *dev = info->user_ptr[1];
if ((rate < 0 || rate > 100) || if (rate > 100 || intvl > NL80211_CQM_TXE_MAX_INTVL)
(intvl < 0 || intvl > NL80211_CQM_TXE_MAX_INTVL))
return -EINVAL; return -EINVAL;
wdev = dev->ieee80211_ptr; wdev = dev->ieee80211_ptr;
......
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