Эх сурвалжийг харах

qcacld-3.0: Remove unwanted QDF asserts from PMO suspend all components

Remove unwanted QDF asserts from PMO and suspend all components as there is
error handling present for error cases.

Change-Id: I43b1ba36d9e2fb467a7a7c110abd4a2d44e5b1a8
CRs-Fixed: 3459928
Rajeev Kumar 2 жил өмнө
parent
commit
9568cbfe1c

+ 0 - 2
components/pmo/dispatcher/src/wlan_pmo_obj_mgmt_api.c

@@ -493,7 +493,6 @@ QDF_STATUS pmo_suspend_all_components(struct wlan_objmgr_psoc *psoc,
 	pmo_ctx = pmo_get_context();
 	if (!pmo_ctx) {
 		pmo_err("unable to get pmo ctx");
-		QDF_ASSERT(0);
 		status = QDF_STATUS_E_FAILURE;
 		goto exit_with_status;
 	}
@@ -512,7 +511,6 @@ QDF_STATUS pmo_suspend_all_components(struct wlan_objmgr_psoc *psoc,
 		if (QDF_IS_STATUS_ERROR(status)) {
 			pmo_err("component %d failed to suspend; status: %d",
 				i, status);
-			QDF_ASSERT(0);
 			goto suspend_recovery;
 		}
 	}