fw-api: CL 17246272 - update fw common interface files

Change-Id: Icb472993edf13e35f339e3f7709de489bc4f3e33
WMI: add service_ids array to NDP_IND event msg
CRs-Fixed: 2262693
This commit is contained in:
spuligil
2022-02-16 06:00:56 -08:00
committed by Gerrit - the friendly Code Review server
parent 6a8285ae45
commit 43fb9a75aa
2 changed files with 6 additions and 1 deletions

View File

@@ -5767,7 +5767,8 @@ WMITLV_CREATE_PARAM_STRUC(WMI_NDP_END_RSP_EVENTID);
WMITLV_ELEM(id,op,buf,len, WMITLV_TAG_ARRAY_BYTE, A_UINT8, ndp_cfg, WMITLV_SIZE_VAR) \ WMITLV_ELEM(id,op,buf,len, WMITLV_TAG_ARRAY_BYTE, A_UINT8, ndp_cfg, WMITLV_SIZE_VAR) \
WMITLV_ELEM(id,op,buf,len, WMITLV_TAG_ARRAY_BYTE, A_UINT8, ndp_app_info, WMITLV_SIZE_VAR) \ WMITLV_ELEM(id,op,buf,len, WMITLV_TAG_ARRAY_BYTE, A_UINT8, ndp_app_info, WMITLV_SIZE_VAR) \
WMITLV_ELEM(id,op,buf,len, WMITLV_TAG_ARRAY_BYTE, A_UINT8, ndp_scid, WMITLV_SIZE_VAR) \ WMITLV_ELEM(id,op,buf,len, WMITLV_TAG_ARRAY_BYTE, A_UINT8, ndp_scid, WMITLV_SIZE_VAR) \
WMITLV_ELEM(id,op,buf,len, WMITLV_TAG_STRUC_wmi_ndp_transport_ip_param, wmi_ndp_transport_ip_param, ndp_transport_ip_param, WMITLV_SIZE_FIX) WMITLV_ELEM(id,op,buf,len, WMITLV_TAG_STRUC_wmi_ndp_transport_ip_param, wmi_ndp_transport_ip_param, ndp_transport_ip_param, WMITLV_SIZE_FIX) \
WMITLV_ELEM(id,op,buf,len, WMITLV_TAG_ARRAY_BYTE, A_UINT8, service_id, WMITLV_SIZE_VAR)
WMITLV_CREATE_PARAM_STRUC(WMI_NDP_INDICATION_EVENTID); WMITLV_CREATE_PARAM_STRUC(WMI_NDP_INDICATION_EVENTID);
/** NDP confirm event /** NDP confirm event

View File

@@ -22995,6 +22995,8 @@ typedef struct {
A_UINT32 nan_scid_len; A_UINT32 nan_scid_len;
/** Self NDI mac address */ /** Self NDI mac address */
wmi_mac_addr self_ndi_mac_addr; wmi_mac_addr self_ndi_mac_addr;
/** Number of bytes in TLV service_id */
A_UINT32 service_id_len;
/** /**
* TLV (tag length value) parameters follow the ndp_indication * TLV (tag length value) parameters follow the ndp_indication
* structure. The TLV's are: * structure. The TLV's are:
@@ -23002,6 +23004,8 @@ typedef struct {
* A_UINT8 ndp_app_info[]; * A_UINT8 ndp_app_info[];
* A_UINT8 nan_scid[]; * A_UINT8 nan_scid[];
* wmi_ndp_transport_ip_param ndp_transport_ip_param; * wmi_ndp_transport_ip_param ndp_transport_ip_param;
* A_UINT8 service_id[service_id_len]; <- holds a single service ID of an
* indeterminate number of bytes (most likely 6 bytes)
*/ */
} wmi_ndp_indication_event_fixed_param_PROTOTYPE; } wmi_ndp_indication_event_fixed_param_PROTOTYPE;