From 6f86a02b326aa6633540b79f71eb511c87dc9bd0 Mon Sep 17 00:00:00 2001 From: Gyanranjan Hazarika Date: Tue, 20 Jul 2021 16:37:46 -0700 Subject: [PATCH] qcacmn: Add ema_init_config to target_resource_config Add new field ema_init_config to signal the configured value of beacon size while using MBSSID feature in 6Ghz. The current allowed range is 1500-3500 bytes. CRs-fixed: 3004041 Change-Id: Id8cc1b7e4602b2e52b8eb215337070c6e3c26089 --- wmi/inc/wmi_unified_param.h | 1 + wmi/src/wmi_unified_tlv.c | 1 + 2 files changed, 2 insertions(+) diff --git a/wmi/inc/wmi_unified_param.h b/wmi/inc/wmi_unified_param.h index 9e412f2e37..f334916bc2 100644 --- a/wmi/inc/wmi_unified_param.h +++ b/wmi/inc/wmi_unified_param.h @@ -5538,6 +5538,7 @@ typedef struct { bool sae_eapol_offload; bool dynamic_pcie_gen_speed_change; bool twt_ack_support_cap; + uint32_t ema_init_config; } target_resource_config; /** diff --git a/wmi/src/wmi_unified_tlv.c b/wmi/src/wmi_unified_tlv.c index b408533650..9efdfb61fb 100644 --- a/wmi/src/wmi_unified_tlv.c +++ b/wmi/src/wmi_unified_tlv.c @@ -7426,6 +7426,7 @@ void wmi_copy_resource_config(wmi_resource_config *resource_cfg, resource_cfg->ema_max_vap_cnt = tgt_res_cfg->ema_max_vap_cnt; resource_cfg->ema_max_profile_period = tgt_res_cfg->ema_max_profile_period; + resource_cfg->ema_init_config = tgt_res_cfg->ema_init_config; if (tgt_res_cfg->max_ndp_sessions) resource_cfg->max_ndp_sessions =