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:

committed by
Madan Koyyalamudi

父節點
fa18b0fa88
當前提交
e7c9776900
@@ -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;
|
||||
|
||||
|
Reference in New Issue
Block a user