From 3a8e4be9ea48bbef64457a457424ee1af51b2f0f Mon Sep 17 00:00:00 2001 From: Amit Mehta Date: Wed, 27 Jul 2022 00:25:31 -0700 Subject: [PATCH] qcacld-3.0: Add call to apply tput policy In current code changes call to apply tput policy was missing, So to fix issue add call to update the tput policy. Change-Id: I29ef9db5789406877deb3177233c10ba1ae9db9c CRs-Fixed: 3254183 --- components/dp/core/src/wlan_dp_bus_bandwidth.c | 1 + 1 file changed, 1 insertion(+) diff --git a/components/dp/core/src/wlan_dp_bus_bandwidth.c b/components/dp/core/src/wlan_dp_bus_bandwidth.c index f51349cfd3..d50155fc9c 100644 --- a/components/dp/core/src/wlan_dp_bus_bandwidth.c +++ b/components/dp/core/src/wlan_dp_bus_bandwidth.c @@ -1489,6 +1489,7 @@ static void dp_pld_request_bus_bandwidth(struct wlan_dp_psoc_context *dp_ctx, param.policy = BBM_TPUT_POLICY; param.policy_info.tput_level = tput_level; + dp_bbm_apply_independent_policy(dp_ctx->psoc, ¶m); dp_rtpm_tput_policy_apply(dp_ctx, tput_level);