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

Commit 914f294a authored by Yeshwanth Sriram Guntuka's avatar Yeshwanth Sriram Guntuka Committed by Gerrit - the friendly Code Review server
Browse files

qcacmn: Use a max of 5 WBM2SW rings for HSP to address wcov failure

The maximum WBM2SW rings in whunt for HSP is 5 and
the same could be 4 in wlan code which will result
in wcov failure for HSP. Use a maximum of 5 WBM2SW
rings for HSP based on FW_SIM config flag to address
this failure.

Change-Id: I8340cd094eb1e0cf842894e5c89174d410729028
CRs-Fixed: 3071662
parent fd260602
Loading
Loading
Loading
Loading
+4 −0
Original line number Diff line number Diff line
@@ -1874,7 +1874,11 @@ struct hal_hw_srng_config hw_srng_table_6490[] = {
	},
	{ /* WBM2SW_RELEASE */
		.start_ring_id = HAL_SRNG_WBM2SW0_RELEASE,
#ifdef CONFIG_PLD_PCIE_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,