From 09c1bea86cde6580f59c72de2461a244476ced51 Mon Sep 17 00:00:00 2001 From: Shashikala Prabhu Date: Thu, 9 Mar 2023 17:06:59 +0530 Subject: [PATCH] qcacmn: Update the datatype of T2LM provisioned links T2LM provisioned links of preferred link structure are represented as bitmap of type wlan_link_band_caps enum. Hence, replace the datatype 'enum wlan_link_band_caps' with 'uint16_t'. Change-Id: If6cdaf5b12a9bd8b06050db67464fb4db642883b CRs-Fixed: 3429430 --- umac/mlo_mgr/inc/wlan_mlo_t2lm.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/umac/mlo_mgr/inc/wlan_mlo_t2lm.h b/umac/mlo_mgr/inc/wlan_mlo_t2lm.h index 821809b740..e39d02eb04 100644 --- a/umac/mlo_mgr/inc/wlan_mlo_t2lm.h +++ b/umac/mlo_mgr/inc/wlan_mlo_t2lm.h @@ -118,12 +118,12 @@ struct wlan_link_preference { /** * struct wlan_t2lm_of_tids - TID-to-link mapping for a given direction * @direction: direction from 'enum wlan_t2lm_direction' - * @t2lm_provisioned_links: Link mapping for all the TIDs. - * It is in form of enum wlan_link_band_caps. + * @t2lm_provisioned_links: Link mapping for all the TIDs. Represented as + * bitmap of type wlan_link_band_caps enum. */ struct wlan_t2lm_of_tids { enum wlan_t2lm_direction direction; - enum wlan_link_band_caps t2lm_provisioned_links[T2LM_MAX_NUM_TIDS]; + uint16_t t2lm_provisioned_links[T2LM_MAX_NUM_TIDS]; }; /**