diff options
| author | Nishank Aggarwal <naggar@codeaurora.org> | 2016-11-18 11:27:27 +0530 |
|---|---|---|
| committer | Anjaneedevi Kapparapu <akappa@codeaurora.org> | 2016-11-24 15:04:47 +0530 |
| commit | b66d51acf2ebb20f6e1bb5ff0d47dc7b7041673d (patch) | |
| tree | c31a05910f8b395cf85773859fac7e07e8940a21 | |
| parent | de3d38fa7099263b0004d3cd03e6a2628c6c3cb9 (diff) | |
qcacld-2.0: CL 2679656 - update fw common interface files
Add tx RTS and PPDU success/fail counters to wmi_ifiace_link_stats
Change-Id: I00175d156804a0f835149ce5d45702b6196e86d4
CRs-Fixed: 865207
| -rw-r--r-- | CORE/SERVICES/COMMON/wmi_unified.h | 4 | ||||
| -rw-r--r-- | CORE/SERVICES/COMMON/wmi_version.h | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/CORE/SERVICES/COMMON/wmi_unified.h b/CORE/SERVICES/COMMON/wmi_unified.h index 218865ed4856..d46ec999876c 100644 --- a/CORE/SERVICES/COMMON/wmi_unified.h +++ b/CORE/SERVICES/COMMON/wmi_unified.h @@ -4801,6 +4801,10 @@ typedef struct { time driver waits before shutting down the radio or switching the channel and after receiving an ACK for a data frame with PM bit set) */ A_UINT32 rx_leak_window; + A_UINT32 tx_rts_succ_cnt; + A_UINT32 tx_rts_fail_cnt; + A_UINT32 tx_ppdu_succ_cnt; + A_UINT32 tx_ppdu_fail_cnt; } wmi_iface_link_stats; /** Interface statistics (once started) reset and start afresh after each connection */ diff --git a/CORE/SERVICES/COMMON/wmi_version.h b/CORE/SERVICES/COMMON/wmi_version.h index 293ae69a8d3d..a7aa5e8c151e 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_ 315 +#define __WMI_REVISION_ 316 /** The Version Namespace should not be normally changed. Only * host and firmware of the same WMI namespace will work |
