qcacmn: Fix compilation error in connection manager
Fix compilation error in connection manager. Handle function name changes missed as part of Icabeb57965920ec82e690bee662528189b081f32. Change-Id: I6f1bc631de9dd7cc9ba7c80e01e857fe1b543782 CRs-Fixed: 2788660
This commit is contained in:

committed by
snandini

szülő
bf0668f3c0
commit
98937e5243
@@ -258,13 +258,13 @@ QDF_STATUS mlme_cm_connect_start_ind(struct wlan_objmgr_vdev *vdev,
|
||||
return ret;
|
||||
}
|
||||
|
||||
QDF_STATUS mlme_cm_candidate_select_ind(struct wlan_objmgr_vdev *vdev,
|
||||
struct wlan_cm_vdev_connect_req *req)
|
||||
QDF_STATUS mlme_cm_bss_select_ind(struct wlan_objmgr_vdev *vdev,
|
||||
struct wlan_cm_vdev_connect_req *req)
|
||||
{
|
||||
QDF_STATUS ret = QDF_STATUS_E_NOSUPPORT;
|
||||
|
||||
if ((glbl_ops) && glbl_ops->mlme_cm_ext_candidate_select_ind_cb)
|
||||
ret = glbl_ops->mlme_cm_ext_candidate_select_ind_cb(vdev, req);
|
||||
if ((glbl_ops) && glbl_ops->mlme_cm_ext_bss_select_ind_cb)
|
||||
ret = glbl_ops->mlme_cm_ext_bss_select_ind_cb(vdev, req);
|
||||
|
||||
return ret;
|
||||
}
|
||||
|
Reference in New Issue
Block a user