diff options
| author | Visweswara Tanuku <vtanuku@codeaurora.org> | 2018-09-18 18:45:41 +0530 |
|---|---|---|
| committer | Visweswara Tanuku <vtanuku@codeaurora.org> | 2018-09-18 18:47:13 +0530 |
| commit | afff1b86504ada7be2f5ffa69637c06bc0572a08 (patch) | |
| tree | 264b5192a8aef7a734ed89946a3fc1cc6bffcea3 | |
| parent | c65df878eb456f38718b26d239e3e8c88fd02b72 (diff) | |
qcacld-2.0: CL 5055458 - Update fw common interface files
WMI: add MLME retries limit and retry delay if no ack as roam params
Also add a couple existing WMI CMDIDs to the WMI_RETURN_STRING list
CRs-fixed: 865207
Change-Id: Ide3ff67251b5d69c280776e962e8a863fc14f460
| -rw-r--r-- | CORE/SERVICES/COMMON/wmi_unified.h | 2 | ||||
| -rw-r--r-- | CORE/SERVICES/COMMON/wmi_version.h | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/CORE/SERVICES/COMMON/wmi_unified.h b/CORE/SERVICES/COMMON/wmi_unified.h index acda28dab51d..4b41adf649f9 100644 --- a/CORE/SERVICES/COMMON/wmi_unified.h +++ b/CORE/SERVICES/COMMON/wmi_unified.h @@ -11389,6 +11389,8 @@ typedef struct { A_UINT32 handoff_delay_for_rx; /* In msec. Delay Hand-Off by this duration * to receive pending Rx frames from * current BSS */ + A_UINT32 max_mlme_sw_retries; /* maximum number of software retries for preauth and reassoc req */ + A_UINT32 no_ack_timeout; /* In msec. duration to wait before another SW retry made if no ack seen for previous frame */ } wmi_roam_offload_tlv_param; /* flags for 11i offload */ diff --git a/CORE/SERVICES/COMMON/wmi_version.h b/CORE/SERVICES/COMMON/wmi_version.h index eb389e088cb4..87958868c556 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_ 560 +#define __WMI_REVISION_ 561 /** The Version Namespace should not be normally changed. Only * host and firmware of the same WMI namespace will work |
