qcacmn: Add get candidates logic in connection manager

Adds get candidates logic in Connection manager.

Change-Id: I852b0bfab51f9914734181e4f748ef962d63b8b7
CRs-Fixed: 2749185
This commit is contained in:
gaurank kathpalia
2020-08-04 21:28:04 +05:30
committed by snandini
부모 1f948cbb6b
커밋 6a2f984c06
7개의 변경된 파일315개의 추가작업 그리고 68개의 파일을 삭제

파일 보기

@@ -223,4 +223,19 @@ static inline QDF_STATUS wlan_scan_purge_results(qdf_list_t *scan_list)
return scm_purge_scan_results(scan_list);
}
/**
* wlan_scan_get_result() - The Public API to get scan results
* @pdev: pdev info
* @filter: Filters
*
* This function fetches scan result
*
* Return: scan list pointer
*/
static inline qdf_list_t *wlan_scan_get_result(struct wlan_objmgr_pdev *pdev,
struct scan_filter *filter)
{
return scm_get_scan_result(pdev, filter);
}
#endif