Commit 4854f175 authored by Johannes Berg's avatar Johannes Berg
Browse files

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: default avatarJohannes Berg <johannes.berg@intel.com>
parent 11d62caf
Loading
Loading
Loading
Loading
+1 −2
Original line number Diff line number Diff line
@@ -178,7 +178,6 @@ 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);

 suspend: