diff options
| author | Krishna Kumaar Natarajan <kknatara@qca.qualcomm.com> | 2016-04-15 18:08:01 -0700 |
|---|---|---|
| committer | Anjaneedevi Kapparapu <akappa@codeaurora.org> | 2016-04-18 12:54:25 +0530 |
| commit | 84c4ea5bc10239203e1aef2eeb4741f1bf19715c (patch) | |
| tree | df98e47ae3422d8c68023aa2c5a93d4b03f8c9a4 | |
| parent | 32fa6c7367a4f75db76731d60b84d9dbec81e8ef (diff) | |
qcacld-2.0: CL 1494723 - update fw common interface files
Add WMI interface changes to send buckets_scanned bitmask per each scan
cache entry that is sent when WMI_EXTSCAN_GET_CACHED_RESULTS_CMDID.
Change-Id: I284e6044c713c48dd3887852e1d1f6e8f85439a7
CRs-Fixed: 865207
| -rw-r--r-- | CORE/SERVICES/COMMON/wmi_unified.h | 6 | ||||
| -rw-r--r-- | CORE/SERVICES/COMMON/wmi_version.h | 2 |
2 files changed, 5 insertions, 3 deletions
diff --git a/CORE/SERVICES/COMMON/wmi_unified.h b/CORE/SERVICES/COMMON/wmi_unified.h index 33471779bb5c..63272528989c 100644 --- a/CORE/SERVICES/COMMON/wmi_unified.h +++ b/CORE/SERVICES/COMMON/wmi_unified.h @@ -11815,14 +11815,16 @@ typedef enum { typedef struct { A_UINT32 tlv_header; /* TLV tag and len; tag equals WMITLV_TAG_ARRAY_STRUC */ - /**RSSI */ + /** RSSI */ A_UINT32 rssi; - /**time stamp in milliseconds */ + /** time stamp in milliseconds */ A_UINT32 tstamp; /** Extscan cycle during which this entry was scanned */ A_UINT32 scan_cycle_id; /** flag to indicate if the given result was obtained as part of interrupted (aborted/large time gap preempted) scan */ A_UINT32 flags; + /** Bitmask of buckets (i.e. sets of channels) scanned */ + A_UINT32 buckets_scanned; } wmi_extscan_rssi_info; typedef struct { diff --git a/CORE/SERVICES/COMMON/wmi_version.h b/CORE/SERVICES/COMMON/wmi_version.h index c8b564d59560..b75b732e56c2 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_ 237 +#define __WMI_REVISION_ 238 /** The Version Namespace should not be normally changed. Only * host and firmware of the same WMI namespace will work |
