qcacmn: Add items for vdev start

Add hidden ssid flag and cac duration in vdev mlme obj, populate
vdev start param.
Register wmi ops extract_vdev_start_resp for target_if converge.

Change-Id: Iaebd49049fb791aaee39ef67611f96eed37d3605
CRs-Fixed: 2506245
This commit is contained in:
Jianmin Zhu
2019-08-08 22:27:58 +08:00
committed by nshrivas
parent cd66fff1ce
commit 1af0d55f56
3 changed files with 9 additions and 1 deletions

View File

@@ -231,9 +231,12 @@ struct vdev_mlme_mgmt_generic {
/**
* struct vdev_mlme_mgmt_ap - ap specific vdev mlme mgmt cfg
* @.
* @hidden_ssid: flag to indicate whether it is hidden ssid
* @cac_duration_ms: cac duration in millseconds
*/
struct vdev_mlme_mgmt_ap {
bool hidden_ssid;
uint32_t cac_duration_ms;
};
/**