Browse Source

qcacmn: Change the datatype of resp_id

The datatype of resp_id in
wmi_afc_power_event_param is 32 bit.

Change the datatype of resp_id from
uint8_t to uint32_t
in the structure reg_fw_afc_power_event,
to write
QCA_WLAN_VENDOR_ATTR_AFC_POWER_EVT_RESP_ID
in the
QCA_WLAN_VENDOR_AFC_POWER_UPDATE_COMPLETE_EVENT

Change-Id: I910921908ddc24290e2b89732fa223a16aeb9981
CRs-Fixed: 3159542
Sriranjani N 3 years ago
parent
commit
bd723869dd
1 changed files with 1 additions and 1 deletions
  1. 1 1
      umac/regulatory/dispatcher/inc/reg_services_public_struct.h

+ 1 - 1
umac/regulatory/dispatcher/inc/reg_services_public_struct.h

@@ -1361,7 +1361,7 @@ struct reg_afc_expiry_event {
  * @afc_chan_info: Pointer to AFC channel object
  */
 struct reg_fw_afc_power_event {
-	uint8_t resp_id;
+	uint32_t resp_id;
 	enum reg_fw_afc_power_event_status_code fw_status_code;
 	enum reg_afc_serv_resp_code serv_resp_code;
 	uint32_t afc_wfa_version;