diff options
| -rwxr-xr-x | fw/wmi_unified.h | 8 | ||||
| -rwxr-xr-x | fw/wmi_version.h | 2 |
2 files changed, 9 insertions, 1 deletions
diff --git a/fw/wmi_unified.h b/fw/wmi_unified.h index ea97d6e01ae0..82990f88ff21 100755 --- a/fw/wmi_unified.h +++ b/fw/wmi_unified.h @@ -2757,6 +2757,9 @@ typedef struct { #define WMI_RSRC_CFG_FLAG_TIM_V2_SUPPORT_ENABLE_S 13 #define WMI_RSRC_CFG_FLAG_TIM_V2_SUPPORT_ENABLE_M 0x2000 + #define WMI_RSRC_CFG_FLAG_EAPOL_REKEY_MINRATE_SUPPORT_ENABLE_S 14 + #define WMI_RSRC_CFG_FLAG_EAPOL_REKEY_MINRATE_SUPPORT_ENABLE_M 0x4000 + A_UINT32 flag1; /** @brief smart_ant_cap - Smart Antenna capabilities information @@ -2954,6 +2957,11 @@ typedef struct { #define WMI_RSRC_CFG_FLAG_TIM_V2_SUPPORT_ENABLE_GET(word32) \ WMI_RSRC_CFG_FLAG_GET((word32), TIM_V2_SUPPORT_ENABLE) +#define WMI_RSRC_CFG_FLAG_EAPOL_REKEY_MINRATE_SUPPORT_ENABLE_SET(word32, value) \ + WMI_RSRC_CFG_FLAG_SET((word32), EAPOL_REKEY_MINRATE_SUPPORT_ENABLE, (value)) +#define WMI_RSRC_CFG_FLAG_EAPOL_REKEY_MINRATE_SUPPORT_ENABLE_GET(word32) \ + WMI_RSRC_CFG_FLAG_GET((word32), EAPOL_REKEY_MINRATE_SUPPORT_ENABLE) + typedef struct { A_UINT32 tlv_header; /* TLV tag and len; tag equals WMITLV_TAG_STRUC_wmi_init_cmd_fixed_param */ diff --git a/fw/wmi_version.h b/fw/wmi_version.h index 82a0019fceb4..2b50db52d977 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_ 536 +#define __WMI_REVISION_ 537 /** The Version Namespace should not be normally changed. Only * host and firmware of the same WMI namespace will work |
