summaryrefslogtreecommitdiff
path: root/fw/wmi_unified.h
diff options
context:
space:
mode:
authorspuligil <quic_spuligil@quicinc.com>2023-03-23 18:01:16 -0700
committerspuligil <quic_spuligil@quicinc.com>2023-03-23 18:02:08 -0700
commitea326d8c057d5a887594c67a839b9272fcff25db (patch)
tree8b93f1039383db996dbd49260606614bd38963dd /fw/wmi_unified.h
parent51d4f3fb25267ed68501bf88cd1ddf215060c8a0 (diff)
downloadwlan-fw-api-ea326d8c057d5a887594c67a839b9272fcff25db.tar.gz
fw-api: CL 22219619 - update fw common interface files
Change-Id: I2ed423e6a4d6ab991c200bd1e49e0846ac5aa5ff WMI: add mlo_bridge_peer flag in wmi_mlo_flags CRs-Fixed: 2262693
Diffstat (limited to 'fw/wmi_unified.h')
-rw-r--r--fw/wmi_unified.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/fw/wmi_unified.h b/fw/wmi_unified.h
index cf61094..c536db3 100644
--- a/fw/wmi_unified.h
+++ b/fw/wmi_unified.h
@@ -14891,6 +14891,8 @@ typedef struct {
#define WMI_MLO_FLAGS_SET_LINK_ADD(mlo_flags, value) WMI_SET_BITS(mlo_flags, 8, 1, value)
#define WMI_MLO_FLAGS_GET_LINK_DEL(mlo_flags) WMI_GET_BITS(mlo_flags, 9, 1)
#define WMI_MLO_FLAGS_SET_LINK_DEL(mlo_flags, value) WMI_SET_BITS(mlo_flags, 9, 1, value)
+#define WMI_MLO_FLAGS_GET_BRIDGE_PEER(mlo_flags) WMI_GET_BITS(mlo_flags, 10, 1)
+#define WMI_MLO_FLAGS_SET_BRIDGE_PEER(mlo_flags, value) WMI_SET_BITS(mlo_flags, 10, 1, value)
/* this structure used for pass mlo flags*/
typedef struct {
@@ -14906,7 +14908,8 @@ typedef struct {
mlo_force_link_inactive:1, /* indicate this link is forced inactive */
mlo_link_add:1, /* Indicate dynamic link addition in an MLD VAP */
mlo_link_del:1, /* Indicate dynamic link deletion in an MLD VAP */
- unused: 22;
+ mlo_bridge_peer:1, /* Indicate if this link has bridge_peer */
+ unused: 21;
};
A_UINT32 mlo_flags;
};