qcacld-3.0: Support roam invoke request in connection manager
Add change to support roam invoke request in connection manager Change-Id: I87bd39263c7c210fa87250aca59ef5f2f89d4c67 CRs-Fixed: 2869211
This commit is contained in:
@@ -3079,4 +3079,13 @@ mlme_is_twt_enabled(struct wlan_objmgr_psoc *psoc)
|
||||
*/
|
||||
bool wlan_mlme_is_local_tpe_pref(struct wlan_objmgr_psoc *psoc);
|
||||
|
||||
/**
|
||||
* wlan_mlme_is_data_stall_recovery_fw_supported() - Check if data stall
|
||||
* recovery is supported by fw
|
||||
* @psoc: pointer to psoc object
|
||||
*
|
||||
* Return: True if supported
|
||||
*/
|
||||
bool
|
||||
wlan_mlme_is_data_stall_recovery_fw_supported(struct wlan_objmgr_psoc *psoc);
|
||||
#endif /* _WLAN_MLME_API_H_ */
|
||||
|
@@ -468,6 +468,20 @@ QDF_STATUS wlan_mlme_get_tx_chainmask_1ss(struct wlan_objmgr_psoc *psoc,
|
||||
return QDF_STATUS_SUCCESS;
|
||||
}
|
||||
|
||||
bool
|
||||
wlan_mlme_is_data_stall_recovery_fw_supported(struct wlan_objmgr_psoc *psoc)
|
||||
{
|
||||
struct wlan_mlme_psoc_ext_obj *mlme_obj;
|
||||
|
||||
mlme_obj = mlme_get_psoc_ext_obj(psoc);
|
||||
if (!mlme_obj) {
|
||||
mlme_err("MLME obj is NULL");
|
||||
return false;
|
||||
}
|
||||
|
||||
return mlme_obj->cfg.gen.data_stall_recovery_fw_support;
|
||||
}
|
||||
|
||||
void
|
||||
wlan_mlme_update_cfg_with_tgt_caps(struct wlan_objmgr_psoc *psoc,
|
||||
struct mlme_tgt_caps *tgt_caps)
|
||||
|
Reference in New Issue
Block a user