qcacmn: Initialize only one RXDMA Monitor Status ring

For WCN7850, the first mac (i.e.. MAC0) is capable of
2G/5G and 6G data transfer. Hence initialize and use
only on RXDMA monitor status ring.

Change-Id: Idb6e23a887a9ed32a52dd54765e5ed3c6a12df06
CRs-Fixed: 3094138
This commit is contained in:
Rakesh Pillai
2021-12-12 09:43:20 -08:00
committed by Madan Koyyalamudi
parent fc5f47db1a
commit 125174cdd1
8 changed files with 39 additions and 9 deletions

View File

@@ -1403,7 +1403,9 @@ static void dp_cfr_filter(struct cdp_soc_t *soc_hdl,
htt_tlv_filter.mo_data_filter = filter_val->mo_data;
}
for (mac_id = 0; mac_id < max_mac_rings; mac_id++) {
for (mac_id = 0;
mac_id < soc->wlan_cfg_ctx->num_rxdma_status_rings_per_pdev;
mac_id++) {
int mac_for_pdev =
dp_get_mac_id_for_pdev(mac_id,
pdev->pdev_id);