qcacmn: Fetch bcn/probe rsp with given mac addr from scan db

Fetch beacon/probe response with given mac address from scan db.
The frame can be used to fill bss descriptor in case of MLO
roaming where scan entry is derived from ML probe response of
assoc link.

Change-Id: Ie20b36c6619dd0e44d04d3bd8767c7dd09b053d5
CRs-Fixed: 3342439
This commit is contained in:
Srinivas Dasari
2022-11-21 21:37:30 +05:30
committed by Madan Koyyalamudi
parent 75dd9dfa21
commit 8b311c3358
4 changed files with 96 additions and 1 deletions

View File

@@ -745,3 +745,11 @@ void wlan_scan_update_low_latency_profile_chnlist(
req->scan_req.chan_list.num_chan = num_scan_channels;
}
#endif
QDF_STATUS
wlan_scan_get_entry_by_mac_addr(struct wlan_objmgr_pdev *pdev,
struct qdf_mac_addr *bssid,
struct element_info *frame)
{
return scm_scan_get_entry_by_mac_addr(pdev, bssid, frame);
}