qcacmn: Export MLO peer APIs

Export MLO peer APIs
wlan_mlo_peer_get_assoc_peer
wlan_mlo_get_mlpeer_by_mld_mac

Change-Id: I4d71cf0ad2214f63f0b4c2be6a63f33fd407d1bf
CRs-Fixed: 3437752
This commit is contained in:
Balaganapathy Palanisamy
2023-03-18 21:10:13 +05:30
committed by Madan Koyyalamudi
parent ebe0de10c5
commit ca53ea9c0c
2 changed files with 5 additions and 0 deletions

View File

@@ -228,6 +228,8 @@ struct wlan_objmgr_peer *wlan_mlo_peer_get_assoc_peer(
return assoc_peer; return assoc_peer;
} }
qdf_export_symbol(wlan_mlo_peer_get_assoc_peer);
bool mlo_peer_is_assoc_peer(struct wlan_mlo_peer_context *ml_peer, bool mlo_peer_is_assoc_peer(struct wlan_mlo_peer_context *ml_peer,
struct wlan_objmgr_peer *peer) struct wlan_objmgr_peer *peer)
{ {

View File

@@ -18,6 +18,7 @@
#include <wlan_mlo_mgr_cmn.h> #include <wlan_mlo_mgr_cmn.h>
#include <wlan_mlo_mgr_public_structs.h> #include <wlan_mlo_mgr_public_structs.h>
#include "wlan_mlo_mgr_main.h" #include "wlan_mlo_mgr_main.h"
#include "qdf_module.h"
#include "qdf_types.h" #include "qdf_types.h"
#include "wlan_cmn.h" #include "wlan_cmn.h"
#include "wlan_mlo_mgr_peer.h" #include "wlan_mlo_mgr_peer.h"
@@ -294,6 +295,8 @@ struct wlan_mlo_peer_context *wlan_mlo_get_mlpeer_by_mld_mac(
return NULL; return NULL;
} }
qdf_export_symbol(wlan_mlo_get_mlpeer_by_mld_mac);
struct wlan_mlo_peer_context struct wlan_mlo_peer_context
*wlan_mlo_get_mlpeer_by_peer_mladdr(struct qdf_mac_addr *mldaddr, *wlan_mlo_get_mlpeer_by_peer_mladdr(struct qdf_mac_addr *mldaddr,
struct wlan_mlo_dev_context **mldev) struct wlan_mlo_dev_context **mldev)