From 5c5c9a57a7a41fe920437a005717bee7f55cb7c8 Mon Sep 17 00:00:00 2001 From: Shashikala Prabhu Date: Wed, 5 Jul 2023 18:00:35 +0530 Subject: [PATCH] qcacmn: Correct the data type of the pending_action enum The data type of pending_action in 'struct dp_soc_umac_reset_ctx' is 'enum umac_reset_rx_event'. We assign the value of 'enum umac_reset_action' to pending_action. Hence, replace 'enum umac_reset_rx_event' with 'enum umac_reset_action' for pending_action. Change-Id: I3505648827ac6de5ce1c93a21b76c58942fc1f50 CRs-Fixed: 3550309 --- dp/wifi3.0/dp_umac_reset.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dp/wifi3.0/dp_umac_reset.h b/dp/wifi3.0/dp_umac_reset.h index a78d5b3b69..e2e8251208 100644 --- a/dp/wifi3.0/dp_umac_reset.h +++ b/dp/wifi3.0/dp_umac_reset.h @@ -219,7 +219,7 @@ struct dp_soc_umac_reset_ctx { enum umac_reset_state current_state; uint32_t shmem_exp_magic_num; struct umac_reset_rx_actions rx_actions; - enum umac_reset_rx_event pending_action; + enum umac_reset_action pending_action; struct dp_intr_bkp *intr_ctx_bkp; qdf_nbuf_t nbuf_list; bool skel_enable;