qcacld-3.0: Modify support for connecting event logging
Connecting event logs are to be sent after candidate selection and not immediately after receiving connect request. Modify the connecting event logs to be sent after sta info event logs. Change-Id: I83b654ba0ef3458368ba7dd6353c5ab67077ec39 CRs-Fixed: 3599703
This commit is contained in:

committed by
Rahul Choudhary

parent
cf3eaa466a
commit
3f5473b0b8
@@ -1413,6 +1413,31 @@ QDF_STATUS wlan_mlme_get_sta_ch_width(struct wlan_objmgr_vdev *vdev,
|
||||
return status;
|
||||
}
|
||||
|
||||
void
|
||||
wlan_mlme_set_bt_profile_con(struct wlan_objmgr_psoc *psoc,
|
||||
bool bt_profile_con)
|
||||
{
|
||||
struct wlan_mlme_psoc_ext_obj *mlme_obj;
|
||||
|
||||
mlme_obj = mlme_get_psoc_ext_obj(psoc);
|
||||
if (!mlme_obj)
|
||||
return;
|
||||
|
||||
mlme_obj->cfg.gen.bt_profile_con = bt_profile_con;
|
||||
}
|
||||
|
||||
bool
|
||||
wlan_mlme_get_bt_profile_con(struct wlan_objmgr_psoc *psoc)
|
||||
{
|
||||
struct wlan_mlme_psoc_ext_obj *mlme_obj;
|
||||
|
||||
mlme_obj = mlme_get_psoc_ext_obj(psoc);
|
||||
if (!mlme_obj)
|
||||
return false;
|
||||
|
||||
return mlme_obj->cfg.gen.bt_profile_con;
|
||||
}
|
||||
|
||||
#ifdef WLAN_FEATURE_11BE_MLO
|
||||
uint8_t wlan_mlme_get_sta_mlo_simultaneous_links(struct wlan_objmgr_psoc *psoc)
|
||||
{
|
||||
|
@@ -134,6 +134,12 @@ void ucfg_mlme_set_ml_link_control_mode(struct wlan_objmgr_psoc *psoc,
|
||||
wlan_mlme_set_ml_link_control_mode(psoc, vdev_id, value);
|
||||
}
|
||||
|
||||
void ucfg_mlme_set_bt_profile_con(struct wlan_objmgr_psoc *psoc,
|
||||
bool bt_profile_con)
|
||||
{
|
||||
wlan_mlme_set_bt_profile_con(psoc, bt_profile_con);
|
||||
}
|
||||
|
||||
uint8_t ucfg_mlme_get_ml_link_control_mode(struct wlan_objmgr_psoc *psoc,
|
||||
uint8_t vdev_id)
|
||||
{
|
||||
|
Reference in New Issue
Block a user