qcacmn: Replace WLAN_FEATURE_T2LM flag with WLAN_FEATURE_11BE

Replace WLAN_FEATURE_T2LM compile-time flag with WLAN_FEATURE_11BE.

Change-Id: If3253bf3aae04f434252bfc92d00b8649f831bfe
CRs-Fixed: 3238444
This commit is contained in:
Shashikala Prabhu
2022-07-07 17:37:22 +05:30
committed by Madan Koyyalamudi
parent d298ea09cd
commit 79b3391de9
9 changed files with 25 additions and 25 deletions

View File

@@ -1080,7 +1080,7 @@ typedef struct {
uint32_t mac_addr47to32;
} wmi_host_mac_addr;
#if defined(WLAN_FEATURE_11BE) && defined(WLAN_FEATURE_T2LM)
#ifdef WLAN_FEATURE_11BE
/**
* struct wlan_host_t2lm_of_tids - TID-to-link mapping info
* @direction: 0 - Downlink, 1 - uplink 2 - Both uplink and downlink
@@ -1108,7 +1108,7 @@ struct wmi_host_tid_to_link_map_params {
uint8_t num_dir;
struct wlan_host_t2lm_of_tids t2lm_info[WLAN_T2LM_MAX_DIRECTION];
};
#endif /* defined(WLAN_FEATURE_11BE) && defined(WLAN_FEATURE_T2LM) */
#endif /* WLAN_FEATURE_11BE */
#ifdef WLAN_FEATURE_11BE_MLO
/**
@@ -1321,7 +1321,7 @@ struct peer_assoc_params {
#endif
uint8_t peer_dms_capable:1,
reserved:7;
#if defined(WLAN_FEATURE_11BE) && defined(WLAN_FEATURE_T2LM)
#ifdef WLAN_FEATURE_11BE
struct wmi_host_tid_to_link_map_params t2lm_params;
#endif
};