|
@@ -8486,6 +8486,12 @@ typedef struct {
|
|
|
/* TWT required */
|
|
|
#define WMI_HEOPS_TWT_REQUIRED_GET_D2(he_ops) WMI_GET_BITS(he_ops, 9, 1)
|
|
|
#define WMI_HEOPS_TWT_REQUIRED_SET_D2(he_ops, value) WMI_SET_BITS(he_ops, 9, 1, value)
|
|
|
+/* DEPRECATED, use WMI_HEOPS_TWT_REQUIRED_GET instead */
|
|
|
+#define WMI_HEOPS_TWT_GET_D2(he_ops) \
|
|
|
+ WMI_HEOPS_TWT_REQUIRED_GET_D2(he_ops)
|
|
|
+/* DEPRECATED, use WMI_HEOPS_TWT_REQUIRED_SET instead */
|
|
|
+#define WMI_HEOPS_TWT_SET_D2(he_ops, value) \
|
|
|
+ WMI_HEOPS_TWT_REQUIRED_SET_D2(he_ops, value)
|
|
|
|
|
|
/* RTS threshold in units of 32 us,0 - always use RTS 1023 - this is disabled */
|
|
|
#define WMI_HEOPS_RTSTHLD_GET_D2(he_ops) WMI_GET_BITS(he_ops, 10, 10)
|
|
@@ -26546,6 +26552,8 @@ typedef struct {
|
|
|
#define WMI_HEOPS_DEFPE_SET WMI_HEOPS_DEFPE_SET_D3
|
|
|
#define WMI_HEOPS_TWT_REQUIRED_GET WMI_HEOPS_TWT_REQUIRED_GET_D3
|
|
|
#define WMI_HEOPS_TWT_REQUIRED_SET WMI_HEOPS_TWT_REQUIRED_SET_D3
|
|
|
+ #define WMI_HEOPS_TWT_GET WMI_HEOPS_TWT_REQUIRED_GET_D3 /* DEPRECATED, use WMI_HEOPS_TWT_REQUIRED_GET */
|
|
|
+ #define WMI_HEOPS_TWT_SET WMI_HEOPS_TWT_REQUIRED_SET_D3 /* DEPRECATED, use WMI_HEOPS_TWT_REQUIRED_SET */
|
|
|
#define WMI_HEOPS_RTSTHLD_GET WMI_HEOPS_RTSTHLD_GET_D3
|
|
|
#define WMI_HEOPS_RTSTHLD_SET WMI_HEOPS_RTSTHLD_SET_D3
|
|
|
#define WMI_HEOPS_PARTBSSCOLOR_GET WMI_HEOPS_PARTBSSCOLOR_GET_D3
|
|
@@ -26766,6 +26774,8 @@ typedef struct {
|
|
|
#define WMI_HEOPS_DEFPE_SET WMI_HEOPS_DEFPE_SET_D2
|
|
|
#define WMI_HEOPS_TWT_REQUIRED_GET WMI_HEOPS_TWT_REQUIRED_GET_D2
|
|
|
#define WMI_HEOPS_TWT_REQUIRED_SET WMI_HEOPS_TWT_REQUIRED_SET_D2
|
|
|
+ #define WMI_HEOPS_TWT_GET WMI_HEOPS_TWT_GET_D2 /* Deprecated */
|
|
|
+ #define WMI_HEOPS_TWT_SET WMI_HEOPS_TWT_SET_D2 /* Deprecated */
|
|
|
#define WMI_HEOPS_RTSTHLD_GET WMI_HEOPS_RTSTHLD_GET_D2
|
|
|
#define WMI_HEOPS_RTSTHLD_SET WMI_HEOPS_RTSTHLD_SET_D2
|
|
|
#define WMI_HEOPS_PARTBSSCOLOR_GET WMI_HEOPS_PARTBSSCOLOR_GET_D2
|