|
@@ -10495,6 +10495,27 @@ void sme_set_eht_bw_cap(mac_handle_t mac_handle, uint8_t vdev_id,
|
|
|
|
|
|
csr_update_session_eht_cap(mac_ctx, session);
|
|
|
}
|
|
|
+
|
|
|
+int sme_update_eht_om_ctrl_supp(mac_handle_t mac_handle, uint8_t session_id,
|
|
|
+ uint8_t cfg_val)
|
|
|
+{
|
|
|
+ struct mac_context *mac_ctx = MAC_CONTEXT(mac_handle);
|
|
|
+ struct csr_roam_session *session;
|
|
|
+
|
|
|
+ session = CSR_GET_SESSION(mac_ctx, session_id);
|
|
|
+
|
|
|
+ if (!session) {
|
|
|
+ sme_err("No session for id %d", session_id);
|
|
|
+ return -EINVAL;
|
|
|
+ }
|
|
|
+ mac_ctx->mlme_cfg->eht_caps.dot11_eht_cap.eht_om_ctl = cfg_val;
|
|
|
+ mac_ctx->eht_cap_2g.eht_om_ctl = cfg_val;
|
|
|
+ mac_ctx->eht_cap_5g.eht_om_ctl = cfg_val;
|
|
|
+
|
|
|
+ csr_update_session_eht_cap(mac_ctx, session);
|
|
|
+
|
|
|
+ return 0;
|
|
|
+}
|
|
|
#endif
|
|
|
|
|
|
#ifdef WLAN_FEATURE_11AX
|
|
@@ -10891,6 +10912,8 @@ int sme_update_he_om_ctrl_supp(mac_handle_t mac_handle, uint8_t session_id,
|
|
|
return -EINVAL;
|
|
|
}
|
|
|
mac_ctx->mlme_cfg->he_caps.dot11_he_cap.omi_a_ctrl = cfg_val;
|
|
|
+ mac_ctx->he_cap_2g.omi_a_ctrl = cfg_val;
|
|
|
+ mac_ctx->he_cap_5g.omi_a_ctrl = cfg_val;
|
|
|
|
|
|
csr_update_session_he_cap(mac_ctx, session);
|
|
|
return 0;
|