1
0

qcacmn: Move vdev_mlme timers to psoc_mlme

Add code to change the vdev_mlme timers to psoc_mlme timers
and also change code to send vdev_delete to FW while physical
destruction of vdev obj.

Change-Id: Ie041182155c75d0cc3825dc97b26abc6be38d76c
CRs-Fixed: 2563931
Este cometimento está contido em:
Akshay Kosigi
2019-09-26 15:22:13 +05:30
cometido por Arun Kumar Khandavalli
ascendente 536903de91
cometimento 71d3820a97
7 ficheiros modificados com 26 adições e 2 eliminações

Ver ficheiro

@@ -18,6 +18,7 @@
* DOC: Implements PSOC MLME APIs
*/
#include <qdf_module.h>
#include <wlan_objmgr_cmn.h>
#include <wlan_objmgr_global_obj.h>
#include <wlan_mlme_dbg.h>
@@ -41,6 +42,8 @@ struct psoc_mlme_obj *mlme_psoc_get_priv(struct wlan_objmgr_psoc *psoc)
return psoc_mlme;
}
qdf_export_symbol(mlme_psoc_get_priv);
static QDF_STATUS mlme_psoc_obj_create_handler(struct wlan_objmgr_psoc *psoc,
void *arg)
{

Ver ficheiro

@@ -65,7 +65,7 @@ static QDF_STATUS mlme_vdev_obj_create_handler(struct wlan_objmgr_vdev *vdev,
return QDF_STATUS_E_FAILURE;
}
txops = target_if_vdev_mgr_get_tx_ops(psoc);
txops = wlan_mlme_get_lmac_tx_ops(psoc);
if (!txops || !txops->psoc_vdev_rsp_timer_inuse) {
mlme_err("Failed to get mlme txrx_ops PSOC_%d",
wlan_psoc_get_id(psoc));