diff --git a/fw/wmi_unified.h b/fw/wmi_unified.h index 21a971fa97..c6194fbc39 100644 --- a/fw/wmi_unified.h +++ b/fw/wmi_unified.h @@ -14458,7 +14458,9 @@ typedef struct { * BIT 6 : Enable/Disable solicited BTM * BIT 7 : Roam BTM candidates based on the roam score instead of BTM preferred value * BIT 8 : BTM query preference over 11k neighbor report request - * BIT 9-31 : Reserved + * BIT 9 : Send BTM query with preferred candidates list + * BIT 10 : Forward MBO BTM Request to Host if MBO ASSOC RETRY attribute is set + * BIT 11-31 : Reserved */ #define WMI_ROAM_BTM_SET_ENABLE(flags, val) WMI_SET_BITS(flags, 0, 1, val) #define WMI_ROAM_BTM_GET_ENABLE(flags) WMI_GET_BITS(flags, 0, 1) @@ -14474,6 +14476,8 @@ typedef struct { #define WMI_ROAM_BTM_GET_BTM_QUERY_PREFERENCE_OVER_11K(flags) WMI_GET_BITS(flags, 8, 1) #define WMI_ROAM_BTM_SET_BTM_QUERY_WITH_CANDIDATE_LIST(flags, val) WMI_SET_BITS(flags, 9, 1, val) #define WMI_ROAM_BTM_GET_BTM_QUERY_WITH_CANDIDATE_LIST(flags) WMI_GET_BITS(flags, 9, 1) +#define WMI_ROAM_BTM_SET_FORWARD_MBO_ASSOC_RETRY_BTM_REQUEST_TO_HOST(flags, val) WMI_SET_BITS(flags, 10, 1, val) +#define WMI_ROAM_BTM_GET_FORWARD_MBO_ASSOC_RETRY_BTM_REQUEST_TO_HOST(flags) WMI_GET_BITS(flags, 10, 1) /** WMI_ROAM_BTM_SET_NON_MATCHING_CNDS_ACTION definition: When BTM candidate is not matched with cache by WMI_ROAM_BTM_SET_CNDS_MATCH_CONDITION, determine what to do */ diff --git a/fw/wmi_version.h b/fw/wmi_version.h index f5b20773ea..ce00a2fe40 100644 --- 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_ 942 +#define __WMI_REVISION_ 943 /** The Version Namespace should not be normally changed. Only * host and firmware of the same WMI namespace will work