From 3cb1b64c60e0fb50b229ff087c61f9d0df160e7c Mon Sep 17 00:00:00 2001 From: Naman Padhiar Date: Tue, 5 Apr 2022 12:00:26 +0530 Subject: [PATCH] qcacmn: Use a max of 5 WBM2SW rings for whunt failure The maximum WBM2SW rings in whunt for MSL is 5 and the same could be 4 in wlan code which will result in wcov failure for MSL. Use a maximum of 5 WBM2SW rings for HSP based on FW_SIM config flag to address this failure. Change-Id: I16770566710efeeea7acbb51f6710e7a996b5cac CRs-Fixed: 3167050 --- hal/wifi3.0/qca6750/hal_6750.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hal/wifi3.0/qca6750/hal_6750.c b/hal/wifi3.0/qca6750/hal_6750.c index a50e8f0608..bf74ade6e0 100644 --- a/hal/wifi3.0/qca6750/hal_6750.c +++ b/hal/wifi3.0/qca6750/hal_6750.c @@ -2349,7 +2349,7 @@ struct hal_hw_srng_config hw_srng_table_6750[] = { }, { /* WBM2SW_RELEASE */ .start_ring_id = HAL_SRNG_WBM2SW0_RELEASE, -#ifdef TX_MULTI_TCL +#if defined(TX_MULTI_TCL) || defined(CONFIG_PLD_IPCIE_FW_SIM) .max_rings = 5, #else .max_rings = 4,