diff options
| author | Nishank Aggarwal <naggar@codeaurora.org> | 2016-11-18 11:34:11 +0530 |
|---|---|---|
| committer | qcabuildsw <qcabuildsw@localhost> | 2016-11-29 16:07:29 -0800 |
| commit | 32a39aee9c04d8ad2e2560870a4877f40da294f4 (patch) | |
| tree | a179f7bb42c05a8c57d01739e6a8f5fa6e14abc0 | |
| parent | 15fd2651bbfd4c88b2835ea3b3fac0ba82cae577 (diff) | |
qcacld-3.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-- | target/inc/wmi_unified.h | 4 | ||||
| -rw-r--r-- | target/inc/wmi_version.h | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/target/inc/wmi_unified.h b/target/inc/wmi_unified.h index 1a4cb1723fb1..e0e3b4cc536e 100644 --- a/target/inc/wmi_unified.h +++ b/target/inc/wmi_unified.h @@ -5057,6 +5057,10 @@ typedef struct { * 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/target/inc/wmi_version.h b/target/inc/wmi_version.h index 91517b5971b5..35bfe780ae42 100644 --- a/target/inc/wmi_version.h +++ b/target/inc/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 |
