qcacmn: Fix the mask for tx completion near full irq

Currently the IRQ mask for tx completion near full
interrupt is not in sync with the tx completion rings
which are enabled for WCN7850.

Fix the mask for tx completion near full interrupt.

Change-Id: I1432191b260094060873406d48e04fde5b7bc35e
CRs-Fixed: 3052650
This commit is contained in:
Rakesh Pillai
2021-10-07 20:19:56 -07:00
committed by Madan Koyyalamudi
父節點 fa18b0fa88
當前提交 e7c9776900
共有 4 個文件被更改,包括 10 次插入6 次删除

查看文件

@@ -676,7 +676,7 @@ dp_service_near_full_srngs_be(struct dp_soc *soc, struct dp_intr *int_ctx,
}
if (tx_ring_near_full_mask) {
for (ring = 0; ring < MAX_TCL_DATA_RINGS; ring++) {
for (ring = 0; ring < soc->num_tcl_data_rings; ring++) {
if (!(tx_ring_near_full_mask & (1 << ring)))
continue;