qcacmn: Vdev start changes for supporting 11be

Add support for setting ehtop on vdev start wmi command.

Change-Id: Ia710cfe082dafd6d36e232253fa2f5ba6d7512d3
CRs-Fixed: 2857805
This commit is contained in:
Venkateswara Swamy Bandaru
2021-04-26 12:51:51 +05:30
committed by Madan Koyyalamudi
parent fcb71e35cf
commit 1ac1976b57
6 changed files with 55 additions and 2 deletions

View File

@@ -160,6 +160,16 @@ struct vdev_mlme_he_ops_info {
uint32_t he_ops;
};
#ifdef WLAN_FEATURE_11BE
/**
* struct vdev_mlme_eht_ops_info - vdev mlme EHTOPS information
* @eht_ops: eht ops
*/
struct vdev_mlme_eht_ops_info {
uint32_t eht_ops;
};
#endif
/**
* struct vdev_mlme_he_ops_info - vdev protocol structure holding information
* that is used in frames
@@ -178,6 +188,9 @@ struct vdev_mlme_proto {
struct vdev_mlme_vht_info vht_info;
struct vdev_mlme_ht_info ht_info;
struct vdev_mlme_he_ops_info he_ops_info;
#ifdef WLAN_FEATURE_11BE
struct vdev_mlme_eht_ops_info eht_ops_info;
#endif
struct vdev_mlme_proto_bss_color bss_color;
};