diff options
| author | tinlin <tinlin@codeaurora.org> | 2017-12-13 09:39:17 +0800 |
|---|---|---|
| committer | snandini <snandini@codeaurora.org> | 2017-12-20 01:16:21 -0800 |
| commit | 6eb25f8f22e780892e30516b4b4561d0c86ff021 (patch) | |
| tree | 88b348a926d8e6e121277546d6d564b28710eb10 | |
| parent | 38b8f0bf78a3e243127c8584a0c567d62d99cfe9 (diff) | |
qcacld-2.0: CL 3789999 - Update fw common interface files
Typedefine wmi_scan_start_offset
Change-Id: Id5d5c47214ffaa4e86eea415b8f43a870e549233
CRs-fixed: 865207
| -rw-r--r-- | CORE/SERVICES/COMMON/wmi_unified.h | 10 | ||||
| -rw-r--r-- | CORE/SERVICES/COMMON/wmi_version.h | 2 |
2 files changed, 11 insertions, 1 deletions
diff --git a/CORE/SERVICES/COMMON/wmi_unified.h b/CORE/SERVICES/COMMON/wmi_unified.h index 87e66e50d839..1412dcae15bf 100644 --- a/CORE/SERVICES/COMMON/wmi_unified.h +++ b/CORE/SERVICES/COMMON/wmi_unified.h @@ -1608,6 +1608,7 @@ typedef enum { #define WMI_SSID_LIST_TAG 0x2 #define WMI_BSSID_LIST_TAG 0x3 #define WMI_IE_TAG 0x4 +#define WMI_SCAN_START_OFFSET_TAG 0x5 typedef struct { A_UINT32 tlv_header; /* TLV tag and len; tag equals WMITLV_TAG_STRUC_wmi_channel */ @@ -2830,6 +2831,15 @@ typedef struct { wmi_ssid ssids[1]; } wmi_ssid_list; +typedef struct { + /** WMI_SCAN_START_OFFSET_TAG */ + A_UINT32 tag; + /** Number of start TSF offsets */ + A_UINT32 num_offset; + /** Array of start TSF offsets provided in milliseconds */ + A_UINT32 start_tsf_offset[1]; +} wmi_scan_start_offset; + /** * WLAN_SCAN_CHAN_MODE Macros defined for A_UINT8 phymode_list[] */ diff --git a/CORE/SERVICES/COMMON/wmi_version.h b/CORE/SERVICES/COMMON/wmi_version.h index 51a02b36dacf..7cac03f6c7b4 100644 --- a/CORE/SERVICES/COMMON/wmi_version.h +++ b/CORE/SERVICES/COMMON/wmi_version.h @@ -36,7 +36,7 @@ #define __WMI_VER_MINOR_ 0 /** WMI revision number has to be incremented when there is a * change that may or may not break compatibility. */ -#define __WMI_REVISION_ 472 +#define __WMI_REVISION_ 473 /** The Version Namespace should not be normally changed. Only * host and firmware of the same WMI namespace will work |
