Partially revert "msm: ipa: Check GSI status during deepsleep resume"

This partially reverts commit 2e77a46f0d.

Reason for revert: ipa3_mdt_load_ipa_fws is not present in this kernel,
this is a bad cherrypick resolution by qcom.

Change-Id: I218978168a6c3fe9f6139a6688be1cb4c0f96b94
This commit is contained in:
Nick Reuter 2025-02-14 13:38:45 +02:00 committed by Michael Bestas
parent e82fabf302
commit 638599aca3
No known key found for this signature in database
GPG key ID: CC95044519BE6669

View file

@ -6933,19 +6933,11 @@ static void ipa3_load_ipa_fw(struct work_struct *work)
* using different signing images, adding support to
* load specific FW image to based on dt entry.
*/
#if IS_ENABLED(CONFIG_QCOM_MDT_LOADER)
if (ipa3_ctx->gsi_fw_file_name)
result = ipa3_mdt_load_ipa_fws(
ipa3_ctx->gsi_fw_file_name);
else
result = ipa3_mdt_load_ipa_fws(IPA_SUBSYSTEM_NAME);
#else /* IS_ENABLED(CONFIG_QCOM_MDT_LOADER) */
if (ipa3_ctx->gsi_fw_file_name)
result = ipa3_pil_load_ipa_fws(
ipa3_ctx->gsi_fw_file_name);
else
result = ipa3_pil_load_ipa_fws(IPA_SUBSYSTEM_NAME);
#endif /* IS_ENABLED(CONFIG_QCOM_MDT_LOADER) */
} else {
result = ipa3_manual_load_ipa_fws();
}