|
@@ -554,7 +554,7 @@ extract_mlo_link_set_active_resp_tlv(wmi_unified_t wmi_handle, void *evt_buf,
|
|
|
return QDF_STATUS_SUCCESS;
|
|
|
}
|
|
|
|
|
|
-#if defined(WLAN_FEATURE_11BE) && defined(WLAN_FEATURE_T2LM)
|
|
|
+#ifdef WLAN_FEATURE_11BE
|
|
|
size_t peer_assoc_t2lm_params_size(struct peer_assoc_params *req)
|
|
|
{
|
|
|
size_t peer_assoc_t2lm_size = WMI_TLV_HDR_SIZE +
|
|
@@ -564,7 +564,7 @@ size_t peer_assoc_t2lm_params_size(struct peer_assoc_params *req)
|
|
|
return peer_assoc_t2lm_size;
|
|
|
}
|
|
|
|
|
|
-void peer_assoc_populate_t2lm_tlv(wmi_peer_assoc_tid_to_link_map *cmd,
|
|
|
+static void peer_assoc_populate_t2lm_tlv(wmi_peer_assoc_tid_to_link_map *cmd,
|
|
|
struct wlan_host_t2lm_of_tids *t2lm,
|
|
|
uint8_t tid_num)
|
|
|
{
|
|
@@ -625,7 +625,7 @@ uint8_t *peer_assoc_add_tid_to_link_map(uint8_t *buf_ptr,
|
|
|
return buf_ptr;
|
|
|
}
|
|
|
|
|
|
-QDF_STATUS send_mlo_peer_tid_to_link_map_cmd_tlv(
|
|
|
+static QDF_STATUS send_mlo_peer_tid_to_link_map_cmd_tlv(
|
|
|
wmi_unified_t wmi_handle,
|
|
|
struct wmi_host_tid_to_link_map_params *params)
|
|
|
{
|
|
@@ -734,7 +734,7 @@ uint8_t *peer_assoc_add_tid_to_link_map(uint8_t *buf_ptr,
|
|
|
WMITLV_SET_HDR(buf_ptr, WMITLV_TAG_ARRAY_STRUC, 0);
|
|
|
return buf_ptr + WMI_TLV_HDR_SIZE;
|
|
|
}
|
|
|
-#endif /* defined(WLAN_FEATURE_11BE) && defined(WLAN_FEATURE_T2LM) */
|
|
|
+#endif /* WLAN_FEATURE_11BE */
|
|
|
|
|
|
#ifdef WLAN_MLO_MULTI_CHIP
|
|
|
QDF_STATUS mlo_setup_cmd_send_tlv(struct wmi_unified *wmi_handle,
|
|
@@ -941,8 +941,8 @@ void wmi_11be_attach_tlv(wmi_unified_t wmi_handle)
|
|
|
extract_mlo_link_set_active_resp_tlv;
|
|
|
ops->send_mlo_link_set_active_cmd =
|
|
|
send_mlo_link_set_active_cmd_tlv;
|
|
|
-#if defined(WLAN_FEATURE_11BE) && defined(WLAN_FEATURE_T2LM)
|
|
|
+#ifdef WLAN_FEATURE_11BE
|
|
|
ops->send_mlo_peer_tid_to_link_map =
|
|
|
send_mlo_peer_tid_to_link_map_cmd_tlv;
|
|
|
-#endif /* defined(WLAN_FEATURE_11BE) && defined(WLAN_FEATURE_T2LM) */
|
|
|
+#endif /* WLAN_FEATURE_11BE */
|
|
|
}
|