|
@@ -6471,6 +6471,7 @@ QDF_STATUS
|
|
|
populate_dot11f_he_operation(struct mac_context *mac_ctx,
|
|
|
struct pe_session *session, tDot11fIEhe_op *he_op)
|
|
|
{
|
|
|
+ enum reg_6g_ap_type ap_pwr_type;
|
|
|
qdf_mem_copy(he_op, &session->he_op, sizeof(*he_op));
|
|
|
|
|
|
he_op->present = 1;
|
|
@@ -6493,8 +6494,8 @@ populate_dot11f_he_operation(struct mac_context *mac_ctx,
|
|
|
session->curr_op_freq);
|
|
|
he_op->oper_info_6g.info.dup_bcon = 0;
|
|
|
he_op->oper_info_6g.info.min_rate = 0;
|
|
|
- he_op->oper_info_6g.info.reg_info =
|
|
|
- wlan_reg_decide_6g_ap_pwr_type(mac_ctx->pdev);
|
|
|
+ wlan_reg_get_cur_6g_ap_pwr_type(mac_ctx->pdev, &ap_pwr_type);
|
|
|
+ he_op->oper_info_6g.info.reg_info = ap_pwr_type;
|
|
|
}
|
|
|
lim_log_he_op(mac_ctx, he_op, session);
|
|
|
|