aboutsummaryrefslogtreecommitdiffstats
path: root/net/mac80211/pm.c
diff options
context:
space:
mode:
authorJohannes Berg <johannes.berg@intel.com>2016-09-13 15:39:29 +0200
committerJohannes Berg <johannes.berg@intel.com>2016-09-13 15:39:29 +0200
commit4854f175c3182816d906c4bc34be5f30556346a5 (patch)
tree5d659c432897e1a4303575f8e5f631939c784ee7 /net/mac80211/pm.c
parentmac80211: simplify TDLS RA lookup (diff)
downloadlinux-dev-4854f175c3182816d906c4bc34be5f30556346a5.tar.xz
linux-dev-4854f175c3182816d906c4bc34be5f30556346a5.zip
mac80211: remove useless open_count check
__ieee80211_suspend() checks early on if there's anything to do by checking open_count, so there's no need to check again later in the function. Remove the useless check. Signed-off-by: Johannes Berg <johannes.berg@intel.com>
Diffstat (limited to 'net/mac80211/pm.c')
-rw-r--r--net/mac80211/pm.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/net/mac80211/pm.c b/net/mac80211/pm.c
index 00a43a70e1fc..28a3a0957c9e 100644
--- a/net/mac80211/pm.c
+++ b/net/mac80211/pm.c
@@ -178,8 +178,7 @@ int __ieee80211_suspend(struct ieee80211_hw *hw, struct cfg80211_wowlan *wowlan)
WARN_ON(!list_empty(&local->chanctx_list));
/* stop hardware - this must stop RX */
- if (local->open_count)
- ieee80211_stop_device(local);
+ ieee80211_stop_device(local);
suspend:
local->suspended = true;