diff options
| author | Zhang Qian <zhangq@codeaurora.org> | 2019-04-04 16:17:58 +0800 |
|---|---|---|
| committer | Zhang Qian <zhangq@codeaurora.org> | 2019-04-11 17:57:22 +0800 |
| commit | 04442e30b854be8f43ce4d82f77a8d5e4bfbb502 (patch) | |
| tree | 1799b24c6593e61e2b07b2d54ef9bdea09548867 | |
| parent | 0263cba29b42c11240cf70b19de7febbbf7fcede (diff) | |
qcacld-2.0: CL 6443430 - Update fw common interface files
WMI: add last_event flag to stats_event_fixed_param
Change-Id: I3ade23fc7fda757d30484747ba60314d41fc2245
CRs-fixed: 2433619
| -rw-r--r-- | CORE/SERVICES/COMMON/wmi_unified.h | 7 | ||||
| -rw-r--r-- | CORE/SERVICES/COMMON/wmi_version.h | 2 |
2 files changed, 7 insertions, 2 deletions
diff --git a/CORE/SERVICES/COMMON/wmi_unified.h b/CORE/SERVICES/COMMON/wmi_unified.h index ce718cbaf055..8010a5b3617e 100644 --- a/CORE/SERVICES/COMMON/wmi_unified.h +++ b/CORE/SERVICES/COMMON/wmi_unified.h @@ -7015,6 +7015,12 @@ typedef struct { A_UINT32 num_peer_extd_stats; /** number of extd2 peer stats event structures (wmi_peer_extd2_stats) */ A_UINT32 num_peer_extd2_stats; + /** last_event + * The most significant bit is set to 1 to indicate whether the last_event + * field contains valid data. The least significant bit is set to 1 to + * indicate this is the final WMI_STATS_EVENT in a series. + */ + A_UINT32 last_event; /* This TLV is followed by another TLV of array of bytes * A_UINT8 data[]; @@ -7026,7 +7032,6 @@ typedef struct { * num_chan_stats * size of(struct wmi_chan_stats) * num_mib_stats * size of(struct wmi_mib_stats) * num_bcn_stats * size of(struct wmi_bcn_stats) - * */ /* If WMI_REQUEST_PEER_EXTD_STAT is set in stats_id, * the data[] array also contains num_peer_stats * size of wmi_peer_extd_stats diff --git a/CORE/SERVICES/COMMON/wmi_version.h b/CORE/SERVICES/COMMON/wmi_version.h index 46adf59b8e8d..f177dbe15f57 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_ 625 +#define __WMI_REVISION_ 626 /** The Version Namespace should not be normally changed. Only * host and firmware of the same WMI namespace will work |
