qcacld-3.0: Update call to get ml partner info as per new api change
As per new API changes, util_scan_get_ml_partner_info is modified to pass the output pointer to ml partner info structure. Update caller accordingly Change-Id: I4da4a52a857eb147fe74f783136da71252e04444 CRs-Fixed: 3043820
This commit is contained in:

committed by
Madan Koyyalamudi

parent
7a3ff80948
commit
b4cc340c47
@@ -1053,8 +1053,12 @@ QDF_STATUS cm_flush_join_req(struct scheduler_msg *msg)
|
||||
#ifdef WLAN_FEATURE_11BE_MLO
|
||||
static void cm_fill_ml_info(struct cm_vdev_join_req *join_req)
|
||||
{
|
||||
join_req->partner_info = util_scan_get_ml_partner_info(join_req->entry);
|
||||
join_req->assoc_link_id = join_req->entry->ml_info.self_link_id;
|
||||
if (QDF_IS_STATUS_SUCCESS(
|
||||
util_scan_get_ml_partner_info(join_req->entry,
|
||||
&join_req->partner_info))) {
|
||||
join_req->assoc_link_id = join_req->entry->ml_info.self_link_id;
|
||||
mlme_debug("Assoc link ID:%d", join_req->assoc_link_id);
|
||||
}
|
||||
}
|
||||
#else
|
||||
static void cm_fill_ml_info(struct cm_vdev_join_req *join_req)
|
||||
|
Reference in New Issue
Block a user