qcacmn: Remove error log for qdf_mem_malloc in qdf files

qdf layer already has the error trace

Change-Id: I451e8a008585d80c9d3ccb619461362a74d0a52b
CRs-Fixed: 2374111
This commit is contained in:
Madhvapathi Sriram
2019-01-07 09:02:08 +05:30
committed by nshrivas
parent 0c5bdd7e73
commit 2750c27818
6 changed files with 11 additions and 31 deletions

View File

@@ -366,10 +366,7 @@ QDF_STATUS qdf_mc_timer_init_debug(qdf_mc_timer_t *timer,
timer->timer_node = qdf_mem_malloc(sizeof(qdf_mc_timer_node_t));
if (timer->timer_node == NULL) {
QDF_TRACE(QDF_MODULE_ID_QDF, QDF_TRACE_LEVEL_ERROR,
"%s: Not able to allocate memory for time_node",
__func__);
if (!timer->timer_node) {
QDF_ASSERT(0);
return QDF_STATUS_E_NOMEM;
}