diff options
| author | Hong Shi <hongsh@codeaurora.org> | 2017-03-10 03:00:03 +0800 |
|---|---|---|
| committer | Gerrit - the friendly Code Review server <code-review@localhost> | 2017-03-20 07:28:04 -0700 |
| commit | 151be7933a5213fd32c2cedc2967c8ece1502159 (patch) | |
| tree | af901231039ffe8e80f633bb68719d945d813014 | |
| parent | 2d2a1f11bcd55a1fd30bf082de5975c32f41cf67 (diff) | |
qcacld-2.0: CL 2875667 - update fw common interface files
Add pkt_err_rate_mon_time field to WMI_ROAM_PER_CONFIG_CMD message
Change-Id: Ia18db0c982c586b002633db98b92813c56e81b1a
CRs-fixed: 865207
| -rw-r--r-- | CORE/SERVICES/COMMON/wmi_unified.h | 9 | ||||
| -rw-r--r-- | CORE/SERVICES/COMMON/wmi_version.h | 2 |
2 files changed, 10 insertions, 1 deletions
diff --git a/CORE/SERVICES/COMMON/wmi_unified.h b/CORE/SERVICES/COMMON/wmi_unified.h index 48c8300b6d35..490b2dc6b997 100644 --- a/CORE/SERVICES/COMMON/wmi_unified.h +++ b/CORE/SERVICES/COMMON/wmi_unified.h @@ -15909,6 +15909,15 @@ typedef struct { * (units are seconds) */ A_UINT32 per_rest_time; + /* This is the total time for which PER monitoring will be run. + * After completion of time windows, the average PER over the window + * will be computed. + * The parameter value stores specifications for both TX and RX + * monitor times. + * The two least-significant bytes (0 & 1) hold the RX monitor time; + * the two most-significant bytes (2 & 3) hold the TX monitor time. + */ + A_UINT32 pkt_err_rate_mon_time; /* units = seconds */ } wmi_roam_per_config_fixed_param; typedef struct { diff --git a/CORE/SERVICES/COMMON/wmi_version.h b/CORE/SERVICES/COMMON/wmi_version.h index 6bb557bb91a0..eb52d2730bcd 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_ 349 +#define __WMI_REVISION_ 350 /** The Version Namespace should not be normally changed. Only * host and firmware of the same WMI namespace will work |
