1
0

qcacmn: Add handling 1x roaming case

- Add osif callback api to get scan ie params
- Made few mlo manager api's public

CRs-Fixed: 3288038
Change-Id: I15a764682b8164eb1b66adeff44d7e344f2563c3
Este cometimento está contido em:
Amruta Kulkarni
2022-09-05 09:24:35 -07:00
cometido por Madan Koyyalamudi
ascendente 202dbe8432
cometimento 2cd3406a9a
14 ficheiros modificados com 231 adições e 46 eliminações

Ver ficheiro

@@ -1,6 +1,6 @@
/*
* Copyright (c) 2019-2021 The Linux Foundation. All rights reserved.
* Copyright (c) 2021-2022 Qualcomm Innovation Center, Inc. All rights reserved.
* Copyright (c) 2021-2023 Qualcomm Innovation Center, Inc. All rights reserved.
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
@@ -601,6 +601,22 @@ mlme_cm_osif_roam_complete(struct wlan_objmgr_vdev *vdev)
return ret;
}
QDF_STATUS
mlme_cm_osif_roam_get_scan_params(struct wlan_objmgr_vdev *vdev,
struct element_info *scan_ie,
enum dot11_mode_filter *dot11mode_filter)
{
QDF_STATUS ret = QDF_STATUS_SUCCESS;
if (glbl_cm_ops &&
glbl_cm_ops->mlme_cm_roam_get_scan_ie_cb)
ret = glbl_cm_ops->mlme_cm_roam_get_scan_ie_cb(vdev,
scan_ie, dot11mode_filter);
return ret;
}
#endif
#ifdef WLAN_FEATURE_PREAUTH_ENABLE