qcacmn: Change tx mon ring sizes

Change tx monitor ring sizes and make minor fix when getting the
number of entries.

Change-Id: Iec458d88948556f7007d4fa33bf082c8ee089064
CRs-Fixed: 3206170
This commit is contained in:
Nandha Kishore Easwaran
2022-05-26 06:29:45 +05:30
committed by Madan Koyyalamudi
parent 5885ff85be
commit 77f302907b
2 changed files with 4 additions and 3 deletions

View File

@@ -228,7 +228,8 @@ dp_tx_mon_buf_desc_pool_init(struct dp_soc *soc)
uint32_t num_entries;
num_entries =
wlan_cfg_get_dp_soc_rx_mon_buf_ring_size(soc->wlan_cfg_ctx);
wlan_cfg_get_dp_soc_tx_mon_buf_ring_size(soc->wlan_cfg_ctx);
return dp_mon_desc_pool_init(&mon_soc_be->tx_desc_mon, num_entries);
}