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
This commit is contained in:
parent
c2a9453efa
commit
921dd733a6
@ -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,
|
static uint32_t wma_get_number_of_tids_supported(uint8_t no_of_peers_supported,
|
||||||
uint8_t num_vdevs)
|
uint8_t num_vdevs)
|
||||||
{
|
{
|
||||||
return (8 * no_of_peers_supported + num_vdevs + 2);
|
return 2 * (no_of_peers_supported + num_vdevs + 2);
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user