Browse Source

Revert "qcacld-3.0: Update number of TIDs supported"

As part of commit id I024e03e4ac46f8118da544889de3ffd7cc67a1b4, host
has increased the no of TID'S(8 * no_of_peers_supported + num_vdevs +
2) to fix a firmware assert. This causes memory allocation issues on
some firmware branches. Due to this fix is reverted

Change-Id: I70c9436ce7dcf886d3228298931b9f9569d1fdb1
Crs-Fixed: 2581524
Abhishek Ambure 5 years ago
parent
commit
921dd733a6
1 changed files with 1 additions and 1 deletions
  1. 1 1
      core/wma/src/wma_main.c

+ 1 - 1
core/wma/src/wma_main.c

@@ -213,7 +213,7 @@ static uint32_t wma_get_number_of_tids_supported(uint8_t no_of_peers_supported,
 static uint32_t wma_get_number_of_tids_supported(uint8_t no_of_peers_supported,
 						 uint8_t num_vdevs)
 {
-	return (8 * no_of_peers_supported + num_vdevs + 2);
+	return 2 * (no_of_peers_supported + num_vdevs + 2);
 }
 #endif