diff options
| author | Sandeep Puligilla <spuligil@codeaurora.org> | 2017-05-02 10:01:27 -0700 |
|---|---|---|
| committer | snandini <snandini@codeaurora.org> | 2017-05-15 12:26:23 -0700 |
| commit | 79b91216146bf85a7d2f0dfabfa1168286ac4efe (patch) | |
| tree | ef598becf04f34c3887b15127e8091f57aeadf47 | |
| parent | fd0ef2662312ac89b632930ed2979349ad50b56b (diff) | |
fw-api: CL 3049858 - update fw common interface files
add fields to WMI VDEV_UP CMD msg for mbssid support
Change-Id: If0342997f7ad8f9bef6888c4eca6f75a2c7e4821
CRs-Fixed: 1107600
| -rwxr-xr-x | fw/wmi_unified.h | 6 | ||||
| -rwxr-xr-x | fw/wmi_version.h | 2 |
2 files changed, 7 insertions, 1 deletions
diff --git a/fw/wmi_unified.h b/fw/wmi_unified.h index 98f2abdfdee0..3d33cf2b188d 100755 --- a/fw/wmi_unified.h +++ b/fw/wmi_unified.h @@ -6761,6 +6761,12 @@ typedef struct { A_UINT32 vdev_assoc_id; /** bssid of the BSS the VDEV is joining */ wmi_mac_addr vdev_bssid; + /** bssid of transmitted AP (mbssid case) */ + wmi_mac_addr trans_bssid; + /** the profile index of the connected non-trans ap (mbssid case). 0 means invalid */ + A_UINT32 profile_idx; + /** the total profile numbers of non-trans aps (mbssid case). 0 means legacy AP */ + A_UINT32 profile_num; } wmi_vdev_up_cmd_fixed_param; typedef struct { diff --git a/fw/wmi_version.h b/fw/wmi_version.h index c8a81c69db5e..ee1d1dba6c72 100755 --- a/fw/wmi_version.h +++ b/fw/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_ 384 +#define __WMI_REVISION_ 385 /** The Version Namespace should not be normally changed. Only * host and firmware of the same WMI namespace will work |
