From 3377c445f8127b76dc2767a581475ffcd1678c3a Mon Sep 17 00:00:00 2001 From: Pavankumar Nandeshwar Date: Mon, 27 Feb 2023 08:31:53 -0800 Subject: [PATCH] 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 --- dp/wifi3.0/dp_main.c | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/dp/wifi3.0/dp_main.c b/dp/wifi3.0/dp_main.c index bea4a888fd..61c03b7589 100644 --- a/dp/wifi3.0/dp_main.c +++ b/dp/wifi3.0/dp_main.c @@ -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);