qcacmn: Do not process Umac reset in DS mode

Do not process Umac reset in DS mode as it is
currently not supported.

Change-Id: Ieaa850ee65d17605cb2b2d3e6d3eb222531c93ae
CRs-Fixed: 3418738
This commit is contained in:
Pavankumar Nandeshwar
2023-02-27 08:31:53 -08:00
committed by Madan Koyyalamudi
parent 747b42cc98
commit 3377c445f8

View File

@@ -13779,6 +13779,11 @@ static void dp_reinit_rings(struct dp_soc *soc)
*/
static QDF_STATUS dp_umac_reset_handle_pre_reset(struct dp_soc *soc)
{
if (wlan_cfg_get_dp_soc_is_ppeds_enabled(soc->wlan_cfg_ctx)) {
dp_err("Umac reset is currently not supported in DS config");
qdf_assert_always(0);
}
dp_reset_interrupt_ring_masks(soc);
dp_pause_tx_hardstart(soc);