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

Commit 003e3c4e authored by Emmanuel Grumbach's avatar Emmanuel Grumbach
Browse files

iwlwifi: mvm: don't enable bcast filtering on P2P client



The firmware doesn't support broadcast filtering on P2P
client. Trying to enable it makes the firmware assert.

Signed-off-by: default avatarEmmanuel Grumbach <emmanuel.grumbach@intel.com>
parent 1b8ebbd3
Loading
Loading
Loading
Loading
+4 −0
Original line number Diff line number Diff line
@@ -1223,6 +1223,10 @@ static int iwl_mvm_configure_bcast_filter(struct iwl_mvm *mvm,
	if (!(mvm->fw->ucode_capa.flags & IWL_UCODE_TLV_FLAGS_BCAST_FILTERING))
		return 0;

	/* bcast filtering isn't supported for P2P client */
	if (vif->p2p)
		return 0;

	if (!iwl_mvm_bcast_filter_build_cmd(mvm, &cmd))
		return 0;