Browse Source

qcacld-3.0: Revert the DBS mode Max voting

Revert the DBS ultra high TPUT Max voting. Max voting is not required.
Instead vote for ultra high bw vote.

Change-Id: Ic8ee47a0c8422be5590d2a009b4700b4a3a8124a
CRs-Fixed: 3078684
Prakash Manjunathappa 3 years ago
parent
commit
9d48783708
1 changed files with 4 additions and 8 deletions
  1. 4 8
      core/hdd/src/wlan_hdd_main.c

+ 4 - 8
core/hdd/src/wlan_hdd_main.c

@@ -10378,14 +10378,10 @@ static void hdd_pld_request_bus_bandwidth(struct hdd_context *hdd_ctx,
 	 * for other cases, follow general voting logic
 	 */
 	if (!ucfg_ipa_is_fw_wdi_activated(hdd_ctx->pdev) &&
-	    policy_mgr_is_current_hwmode_dbs(hdd_ctx->psoc)) {
-		if (total_pkts > hdd_ctx->config->bus_bw_ultra_high_threshold) {
-			next_vote_level = PLD_BUS_WIDTH_MAX;
-			tput_level = TPUT_LEVEL_SUPER_HIGH;
-		} else if (total_pkts > hdd_ctx->config->bus_bw_dbs_threshold) {
-			next_vote_level = PLD_BUS_WIDTH_ULTRA_HIGH;
-			tput_level = TPUT_LEVEL_ULTRA_HIGH;
-		}
+	    policy_mgr_is_current_hwmode_dbs(hdd_ctx->psoc) &&
+	    (total_pkts > hdd_ctx->config->bus_bw_dbs_threshold)) {
+		next_vote_level = PLD_BUS_WIDTH_ULTRA_HIGH;
+		tput_level = TPUT_LEVEL_ULTRA_HIGH;
 	}
 
 	param.policy = BBM_TPUT_POLICY;