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

Commit 34672bb3 authored by Eliad Peller's avatar Eliad Peller Committed by Emmanuel Grumbach
Browse files

iwlwifi: mvm: remove the vif parameter of iwl_mvm_configure_bcast_filter()



Remove the vif parameter of iwl_mvm_configure_bcast_filter()
as it's not being used.

Signed-off-by: default avatarEliad Peller <eliadx.peller@intel.com>
Signed-off-by: default avatarEmmanuel Grumbach <emmanuel.grumbach@intel.com>
parent 08f0d23d
Loading
Loading
Loading
Loading
+5 −6
Original line number Original line Diff line number Diff line
@@ -1734,8 +1734,8 @@ bool iwl_mvm_bcast_filter_build_cmd(struct iwl_mvm *mvm,


	return true;
	return true;
}
}
static int iwl_mvm_configure_bcast_filter(struct iwl_mvm *mvm,

					  struct ieee80211_vif *vif)
static int iwl_mvm_configure_bcast_filter(struct iwl_mvm *mvm)
{
{
	struct iwl_bcast_filter_cmd cmd;
	struct iwl_bcast_filter_cmd cmd;


@@ -1749,8 +1749,7 @@ static int iwl_mvm_configure_bcast_filter(struct iwl_mvm *mvm,
				    sizeof(cmd), &cmd);
				    sizeof(cmd), &cmd);
}
}
#else
#else
static inline int iwl_mvm_configure_bcast_filter(struct iwl_mvm *mvm,
static inline int iwl_mvm_configure_bcast_filter(struct iwl_mvm *mvm)
						 struct ieee80211_vif *vif)
{
{
	return 0;
	return 0;
}
}
@@ -1865,7 +1864,7 @@ static void iwl_mvm_bss_info_changed_station(struct iwl_mvm *mvm,
		}
		}


		iwl_mvm_recalc_multicast(mvm);
		iwl_mvm_recalc_multicast(mvm);
		iwl_mvm_configure_bcast_filter(mvm, vif);
		iwl_mvm_configure_bcast_filter(mvm);


		/* reset rssi values */
		/* reset rssi values */
		mvmvif->bf_data.ave_beacon_signal = 0;
		mvmvif->bf_data.ave_beacon_signal = 0;
@@ -1916,7 +1915,7 @@ static void iwl_mvm_bss_info_changed_station(struct iwl_mvm *mvm,


	if (changes & BSS_CHANGED_ARP_FILTER) {
	if (changes & BSS_CHANGED_ARP_FILTER) {
		IWL_DEBUG_MAC80211(mvm, "arp filter changed\n");
		IWL_DEBUG_MAC80211(mvm, "arp filter changed\n");
		iwl_mvm_configure_bcast_filter(mvm, vif);
		iwl_mvm_configure_bcast_filter(mvm);
	}
	}
}
}