|
@@ -6838,9 +6838,9 @@ typedef enum {
|
|
|
#define WMI_PDEV_SRG_PD_THRESHOLD_GET(pd_threshold_cfg) WMI_GET_BITS(pd_threshold_cfg, 8, 8)
|
|
|
|
|
|
#define WMI_PDEV_OBSS_PD_ENABLE_PER_AC_SET(per_ac_cfg, value) WMI_SET_BITS(per_ac_cfg, 0, 4, value)
|
|
|
- #define WMI_PDEV_OBSS_PD_ENABLE_PER_AC_GET(per_ac_cfg, value) WMI_GET_BITS(per_ac_cfg, 0, 4)
|
|
|
+ #define WMI_PDEV_OBSS_PD_ENABLE_PER_AC_GET(per_ac_cfg) WMI_GET_BITS(per_ac_cfg, 0, 4)
|
|
|
#define WMI_PDEV_SRP_ENABLE_PER_AC_SET(per_ac_cfg, value) WMI_SET_BITS(per_ac_cfg, 16, 4, value)
|
|
|
- #define WMI_PDEV_SRP_ENABLE_PER_AC_GET(per_ac_cfg, value) WMI_GET_BITS(per_ac_cfg, 16, 4)
|
|
|
+ #define WMI_PDEV_SRP_ENABLE_PER_AC_GET(per_ac_cfg) WMI_GET_BITS(per_ac_cfg, 16, 4)
|
|
|
|
|
|
typedef struct {
|
|
|
A_UINT32 tlv_header; /** TLV tag and len; tag equals WMITLV_TAG_STRUC_wmi_pdev_set_param_cmd_fixed_param */
|
|
@@ -10014,14 +10014,14 @@ typedef struct {
|
|
|
A_UINT32 profile_idx;
|
|
|
/** the total profile numbers of non-trans aps (mbssid case). 0 means legacy AP */
|
|
|
A_UINT32 profile_num;
|
|
|
+ /** flags - this is a bitwise-or combination of WMI_VDEV_UP_FLAGS values */
|
|
|
+ A_UINT32 flags;
|
|
|
} wmi_vdev_up_cmd_fixed_param;
|
|
|
|
|
|
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 {
|