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

Commit ad0ce1a0 authored by Talel Atias's avatar Talel Atias
Browse files

msm: kernel: ecm_ipa: WA for missing USB IPA RM support



This change introduce a SW workaround for missing
USB support for IPA resource manager.
ECM_IPA require USB to support request sent to
USB consumer upon data transfer.
The WA shall bypass IPA resource manager for packet
sent from Apps processor to tethered PC.

Change-Id: I919b5ea90317c0710efbd301cdfab566aa76f297
Signed-off-by: default avatarTalel Atias <tatias@codeaurora.org>
parent cadcc68d
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -243,7 +243,7 @@ int ecm_ipa_init(struct ecm_ipa_params *params)
	ecm_ipa_ctx->net = net;
	ecm_ipa_ctx->tx_enable = true;
	ecm_ipa_ctx->rx_enable = true;
	ecm_ipa_ctx->rm_enable = true;
	ecm_ipa_ctx->rm_enable = false;
	ecm_ipa_ctx->outstanding_high = DEFAULT_OUTSTANDING_HIGH;
	ecm_ipa_ctx->outstanding_low = DEFAULT_OUTSTANDING_LOW;
	atomic_set(&ecm_ipa_ctx->outstanding_pkts, 0);