Эх сурвалжийг харах

qcacmn: Change the data type of message type id

The datatype of wd_msg_type_id was uint16_t which truncates the
upper bytes of msg id.

Changing the datatype of wd_msg_type_id from uint16_t to uint32_t.

Change-Id: I49b5eefd878660f6ba3d0b7da451df99661c59df
Surabhi Vishnoi 7 жил өмнө
parent
commit
2f9ae349f6
1 өөрчлөгдсөн 1 нэмэгдсэн , 1 устгасан
  1. 1 1
      wmi_unified_priv.h

+ 1 - 1
wmi_unified_priv.h

@@ -183,7 +183,7 @@ struct fwdebug {
  * @ task - WMI workqueue task struct
  */
 struct wmi_wq_dbg_info {
-	uint16_t wd_msg_type_id;
+	uint32_t wd_msg_type_id;
 	qdf_workqueue_t *wmi_wq;
 	qdf_thread_t *task;
 };