|
@@ -9916,6 +9916,15 @@ typedef struct {
|
|
|
A_UINT32 vdev_id;
|
|
|
} wmi_vdev_delete_cmd_fixed_param;
|
|
|
|
|
|
+enum WMI_VDEV_UP_FLAGS {
|
|
|
+ /** EMA_MBSSID_AP
|
|
|
+ * Valid only for STA VDEV.
|
|
|
+ * This flag will be set when STA connected MBSSID AP is EMA capable.
|
|
|
+ * EMA - Enhanced Multiple BSS Advertisemet.
|
|
|
+ */
|
|
|
+ WMI_VDEV_UP_FLAG_EMA_MBSSID_AP = 0x00000001,
|
|
|
+};
|
|
|
+
|
|
|
typedef struct {
|
|
|
A_UINT32 tlv_header; /* TLV tag and len; tag equals WMITLV_TAG_STRUC_wmi_vdev_up_cmdid_fixed_param */
|
|
|
/** unique id identifying the VDEV, generated by the caller */
|
|
@@ -9936,6 +9945,8 @@ typedef struct {
|
|
|
A_UINT32 tlv_header; /** TLV tag and len; tag equals WMITLV_TAG_STRUC_wmi_vdev_stop_cmd_fixed_param */
|
|
|
/** unique id identifying the VDEV, generated by the caller */
|
|
|
A_UINT32 vdev_id;
|
|
|
+ /** flags - this is a bitwise-or combination of WMI_VDEV_UP_FLAGS values */
|
|
|
+ A_UINT32 flags;
|
|
|
} wmi_vdev_stop_cmd_fixed_param;
|
|
|
|
|
|
typedef struct {
|