Ver código fonte

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
Shashikala Prabhu 2 anos atrás
pai
commit
5c5c9a57a7
1 arquivos alterados com 1 adições e 1 exclusões
  1. 1 1
      dp/wifi3.0/dp_umac_reset.h

+ 1 - 1
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;