msm: ipa3: pass the hdl instead of pointer

Fix pass by value for ipa_pm_set_throughput and activate_sync

Change-Id: I920356e394b3818336c959ef72fc9df4ae3e55eb
Signed-off-by: Michael Adisumarta <madisuma@codeaurora.org>
Esse commit está contido em:
Michael Adisumarta
2021-01-13 22:14:08 -08:00
commit 45bbdaa355

Ver arquivo

@@ -210,9 +210,9 @@ int ipa3_teth_bridge_connect(struct teth_bridge_connect_params *connect_params)
/* vote for turbo in case of MHIP channels*/
if (ipa3_is_apq())
res = ipa_pm_set_throughput(ipa3_teth_ctx->modem_pm_hdl,
res = ipa_pm_set_throughput(*pm,
5200);
res = ipa_pm_activate_sync(ipa3_teth_ctx->modem_pm_hdl);
res = ipa_pm_activate_sync(*pm);
TETH_DBG_FUNC_EXIT();
return res;