Commit 34b79fcf authored by Johannes Berg's avatar Johannes Berg Committed by Luca Coelho
Browse files

iwlwifi: mvm: remove useless iwl_mvm_resume_d3() function



This is called exactly once, a few lines down, so there's
no point in having the extra function.

Signed-off-by: default avatarJohannes Berg <johannes.berg@intel.com>
Signed-off-by: default avatarLuca Coelho <luciano.coelho@intel.com>
Link: https://lore.kernel.org/r/iwlwifi.20210210135352.1ef80bf3008c.I0b5349530182b5616a4149dd596f95aa54ea724c@changeid


Signed-off-by: default avatarLuca Coelho <luciano.coelho@intel.com>
parent b06b5986
Loading
Loading
Loading
Loading
+1 −6
Original line number Diff line number Diff line
@@ -2164,17 +2164,12 @@ static int __iwl_mvm_resume(struct iwl_mvm *mvm, bool test)
	return 1;
}

static int iwl_mvm_resume_d3(struct iwl_mvm *mvm)
{
	return __iwl_mvm_resume(mvm, false);
}

int iwl_mvm_resume(struct ieee80211_hw *hw)
{
	struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
	int ret;

	ret = iwl_mvm_resume_d3(mvm);
	ret = __iwl_mvm_resume(mvm, false);

	iwl_mvm_resume_tcm(mvm);