|
@@ -233,7 +233,6 @@ QDF_STATUS wlan_cp_stats_open(struct wlan_objmgr_psoc *psoc)
|
|
|
|
|
|
QDF_STATUS wlan_cp_stats_close(struct wlan_objmgr_psoc *psoc)
|
|
|
{
|
|
|
- QDF_STATUS status = QDF_STATUS_E_FAILURE;
|
|
|
struct cp_stats_context *csc;
|
|
|
|
|
|
if (!psoc) {
|
|
@@ -242,16 +241,12 @@ QDF_STATUS wlan_cp_stats_close(struct wlan_objmgr_psoc *psoc)
|
|
|
}
|
|
|
csc =
|
|
|
wlan_objmgr_psoc_get_comp_private_obj(psoc, WLAN_UMAC_COMP_CP_STATS);
|
|
|
- if (!csc) {
|
|
|
- cp_stats_err("cp_stats_context is null!");
|
|
|
- return QDF_STATUS_E_FAILURE;
|
|
|
+ if (csc && csc->cp_stats_close) {
|
|
|
+ csc->cp_stats_close(psoc);
|
|
|
+ qdf_spinlock_destroy(&csc->csc_lock);
|
|
|
}
|
|
|
|
|
|
- if (csc->cp_stats_close)
|
|
|
- status = csc->cp_stats_close(psoc);
|
|
|
-
|
|
|
- qdf_spinlock_destroy(&csc->csc_lock);
|
|
|
- return status;
|
|
|
+ return QDF_STATUS_SUCCESS;
|
|
|
}
|
|
|
|
|
|
/* WMI registrations stage */
|
|
@@ -261,13 +256,13 @@ QDF_STATUS wlan_cp_stats_enable(struct wlan_objmgr_psoc *psoc)
|
|
|
struct cp_stats_context *csc;
|
|
|
|
|
|
if (!psoc) {
|
|
|
- cp_stats_err("PSOC is null!\n");
|
|
|
+ cp_stats_err("PSOC is null!");
|
|
|
return QDF_STATUS_E_INVAL;
|
|
|
}
|
|
|
csc =
|
|
|
wlan_objmgr_psoc_get_comp_private_obj(psoc, WLAN_UMAC_COMP_CP_STATS);
|
|
|
if (!csc) {
|
|
|
- cp_stats_err("cp_stats_context is null!\n");
|
|
|
+ cp_stats_err("cp_stats_context is null!");
|
|
|
return QDF_STATUS_E_FAILURE;
|
|
|
}
|
|
|
|
|
@@ -279,7 +274,6 @@ QDF_STATUS wlan_cp_stats_enable(struct wlan_objmgr_psoc *psoc)
|
|
|
|
|
|
QDF_STATUS wlan_cp_stats_disable(struct wlan_objmgr_psoc *psoc)
|
|
|
{
|
|
|
- QDF_STATUS status = QDF_STATUS_E_FAILURE;
|
|
|
struct cp_stats_context *csc;
|
|
|
|
|
|
if (!psoc) {
|
|
@@ -288,15 +282,10 @@ QDF_STATUS wlan_cp_stats_disable(struct wlan_objmgr_psoc *psoc)
|
|
|
}
|
|
|
csc =
|
|
|
wlan_objmgr_psoc_get_comp_private_obj(psoc, WLAN_UMAC_COMP_CP_STATS);
|
|
|
- if (!csc) {
|
|
|
- cp_stats_err("cp_stats_context is null!\n");
|
|
|
- return QDF_STATUS_E_FAILURE;
|
|
|
- }
|
|
|
-
|
|
|
- if (csc->cp_stats_disable)
|
|
|
- status = csc->cp_stats_disable(psoc);
|
|
|
+ if (csc && csc->cp_stats_disable)
|
|
|
+ csc->cp_stats_disable(psoc);
|
|
|
|
|
|
- return status;
|
|
|
+ return QDF_STATUS_SUCCESS;
|
|
|
}
|
|
|
|
|
|
QDF_STATUS
|