diff options
| author | tinlin <tinlin@codeaurora.org> | 2017-11-21 14:55:12 +0800 |
|---|---|---|
| committer | Gerrit - the friendly Code Review server <code-review@localhost> | 2017-11-28 03:47:44 -0800 |
| commit | b41d07898f3bcc280cf91708e3260f6ea95bee95 (patch) | |
| tree | 28097de49e2e756f2493bcb339ef7d751d5e0d6d | |
| parent | f29d2cc114bad841cd5907aa07f6bf58382e2b8f (diff) | |
qcacld-2.0: CL 3369442 - Update fw common interface files
Add timestamp in wmi scan event
Change-Id: I0ba769746b11e4c98f0e51c9ec60c959d9943796
CRs-fixed: 865207
| -rw-r--r-- | CORE/SERVICES/COMMON/wmi_unified.h | 6 | ||||
| -rw-r--r-- | CORE/SERVICES/COMMON/wmi_version.h | 2 |
2 files changed, 7 insertions, 1 deletions
diff --git a/CORE/SERVICES/COMMON/wmi_unified.h b/CORE/SERVICES/COMMON/wmi_unified.h index a341babe032e..d43deae3f9e6 100644 --- a/CORE/SERVICES/COMMON/wmi_unified.h +++ b/CORE/SERVICES/COMMON/wmi_unified.h @@ -3119,6 +3119,12 @@ typedef struct { A_UINT32 scan_id; /**id of VDEV that requested the scan */ A_UINT32 vdev_id; + /** TSF Timestamp when the scan event (wmi_scan_event_type) is completed + * In case of AP it is TSF of the AP vdev + * In case of STA connected state this is the TSF of the AP + * In case of STA not connected it will be the free running HW timer + */ + A_UINT32 tsf_timestamp; } wmi_scan_event_fixed_param; /* WMI Diag event */ diff --git a/CORE/SERVICES/COMMON/wmi_version.h b/CORE/SERVICES/COMMON/wmi_version.h index c75128b9b740..804adb097df1 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_ 427 +#define __WMI_REVISION_ 428 /** The Version Namespace should not be normally changed. Only * host and firmware of the same WMI namespace will work |
