Browse Source

qcacld-3.0: Send WMI_VDEV_PARAM_HEOPS_0_31

Currently WMI_VDEV_PARAM_HEOPS_0_31 is sent after VDEV_START
response received from FW. But FW side, they do not configure
hardware register with sent BSS color as VDEV_UP command is not
sent yet. FW needs to know for which BSSID hardware register,
this BSS color should be configured. Hence send SET_VDEV_PARAM
command with param-id WMI_VDEV_PARAM_HEOPS_0_31 after VDEV_UP
as well.

Change-Id: I7cc4648381464f1c35edee36caabf718ff8eafe3
CRs-Fixed: 3461304
Rachit Kankane 1 year ago
parent
commit
67cd36f376
1 changed files with 1 additions and 0 deletions
  1. 1 0
      core/wma/src/wma_mgmt.c

+ 1 - 0
core/wma/src/wma_mgmt.c

@@ -2505,6 +2505,7 @@ QDF_STATUS wma_set_ap_vdev_up(tp_wma_handle wma, uint8_t vdev_id)
 	}
 	wma_set_sap_keepalive(wma, vdev_id);
 	wma_set_vdev_mgmt_rate(wma, vdev_id);
+	wma_vdev_set_he_bss_params(wma, vdev_id, &mlme_obj->proto.he_ops_info);
 	wma_sr_update(wma, vdev_id, true);
 
 	return status;