Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 43fb9a75 authored by spuligil's avatar spuligil Committed by Gerrit - the friendly Code Review server
Browse files

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
parent 6a8285ae
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -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_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_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);

/** NDP confirm event
+4 −0
Original line number Diff line number Diff line
@@ -22995,6 +22995,8 @@ typedef struct {
    A_UINT32 nan_scid_len;
    /** Self NDI mac address */
    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
     * structure. The TLV's are:
@@ -23002,6 +23004,8 @@ typedef struct {
     * A_UINT8 ndp_app_info[];
     * A_UINT8 nan_scid[];
     * 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;