Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit a19907c7 authored by Naman Padhiar's avatar Naman Padhiar
Browse files

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
parent cf865a8b
Loading
Loading
Loading
Loading
+4 −0
Original line number Diff line number Diff line
@@ -2242,7 +2242,11 @@ struct hal_hw_srng_config hw_srng_table_6750[] = {
	},
	{ /* WBM2SW_RELEASE */
		.start_ring_id = HAL_SRNG_WBM2SW0_RELEASE,
#ifdef CONFIG_PLD_IPCIE_FW_SIM
		.max_rings = 5,
#else
		.max_rings = 4,
#endif
		.entry_size = sizeof(struct wbm_release_ring) >> 2,
		.lmac_ring = FALSE,
		.ring_dir = HAL_SRNG_DST_RING,