Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 7b758a11 authored by Luca Coelho's avatar Luca Coelho
Browse files

iwlwifi: mvm: handle IBSS probe_queue in a few missing places



When IBSS was implemented for DQA, we missid a few places where it
should be handled in the same way as AP.

Fixes: ee48b722 ("iwlwifi: mvm: support ibss in dqa mode")
Signed-off-by: default avatarLuca Coelho <luciano.coelho@intel.com>
parent 5462bcd8
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -2027,7 +2027,8 @@ int iwl_mvm_send_add_bcast_sta(struct iwl_mvm *mvm, struct ieee80211_vif *vif)
						IWL_MAX_TID_COUNT,
						wdg_timeout);

		if (vif->type == NL80211_IFTYPE_AP)
		if (vif->type == NL80211_IFTYPE_AP ||
		    vif->type == NL80211_IFTYPE_ADHOC)
			mvm->probe_queue = queue;
		else if (vif->type == NL80211_IFTYPE_P2P_DEVICE)
			mvm->p2p_dev_queue = queue;