Browse Source

qcacld-3.0: update the mac ctx with eht caps

update the mac ctx with eht caps.

Change-Id: If3e3b33662587336374bcd2a16b1d137a35b990d
CRs-Fixed: 2911899
Arun Kumar Khandavalli 4 years ago
parent
commit
65fb7ff5c2
2 changed files with 14 additions and 0 deletions
  1. 5 0
      core/mac/inc/ani_global.h
  2. 9 0
      core/sme/src/common/sme_api.c

+ 5 - 0
core/mac/inc/ani_global.h

@@ -820,6 +820,11 @@ struct mac_context {
 #ifdef FEATURE_ANI_LEVEL_REQUEST
 	struct ani_level_params ani_params;
 #endif
+#ifdef WLAN_FEATURE_11BE
+	tDot11fIEeht_cap eht_cap_2g;
+	tDot11fIEeht_cap eht_cap_5g;
+#endif
+
 };
 
 #ifdef FEATURE_WLAN_TDLS

+ 9 - 0
core/sme/src/common/sme_api.c

@@ -10780,6 +10780,15 @@ void sme_update_tgt_eht_cap(mac_handle_t mac_handle,
 			    struct wma_tgt_cfg *cfg,
 			    tDot11fIEeht_cap *eht_cap_ini)
 {
+	struct mac_context *mac_ctx = MAC_CONTEXT(mac_handle);
+
+	qdf_mem_copy(&mac_ctx->eht_cap_2g,
+		     &cfg->eht_cap_2g,
+		     sizeof(tDot11fIEeht_cap));
+
+	qdf_mem_copy(&mac_ctx->eht_cap_5g,
+		     &cfg->eht_cap_5g,
+		     sizeof(tDot11fIEeht_cap));
 }
 
 void sme_update_eht_cap_nss(mac_handle_t mac_handle, uint8_t session_id,