|
@@ -83,13 +83,13 @@ tSirRetStatus mac_start(tHalHandle hHal, void *pHalMacStartParams)
|
|
|
\return tSirRetStatus
|
|
|
-------------------------------------------------------------*/
|
|
|
|
|
|
-tSirRetStatus mac_stop(tHalHandle hHal, tHalStopType stopType)
|
|
|
+QDF_STATUS mac_stop(tHalHandle hHal, tHalStopType stopType)
|
|
|
{
|
|
|
tpAniSirGlobal pMac = (tpAniSirGlobal) hHal;
|
|
|
pe_stop(pMac);
|
|
|
cfg_cleanup(pMac);
|
|
|
|
|
|
- return eSIR_SUCCESS;
|
|
|
+ return QDF_STATUS_SUCCESS;
|
|
|
}
|
|
|
|
|
|
/** -------------------------------------------------------------
|
|
@@ -157,13 +157,13 @@ tSirRetStatus mac_open(struct wlan_objmgr_psoc *psoc, tHalHandle *pHalHandle,
|
|
|
\return none
|
|
|
-------------------------------------------------------------*/
|
|
|
|
|
|
-tSirRetStatus mac_close(tHalHandle hHal)
|
|
|
+QDF_STATUS mac_close(tHalHandle hHal)
|
|
|
{
|
|
|
|
|
|
tpAniSirGlobal pMac = (tpAniSirGlobal) hHal;
|
|
|
|
|
|
if (!pMac)
|
|
|
- return eSIR_FAILURE;
|
|
|
+ return QDF_STATUS_E_FAILURE;
|
|
|
|
|
|
pe_close(pMac);
|
|
|
|
|
@@ -177,5 +177,5 @@ tSirRetStatus mac_close(tHalHandle hHal)
|
|
|
wlan_objmgr_psoc_release_ref(pMac->psoc, WLAN_LEGACY_MAC_ID);
|
|
|
pMac->psoc = NULL;
|
|
|
|
|
|
- return eSIR_SUCCESS;
|
|
|
+ return QDF_STATUS_SUCCESS;
|
|
|
}
|