qcacmn: Remove error log for qdf_mem_malloc in utils/ftm files
qdf layer already has the error trace Change-Id: Ida43aeeeea8004ab47015214565ae3fd8a78b903 CRs-Fixed: 2376434
This commit is contained in:

committed by
nshrivas

vanhempi
207dcdbcfe
commit
1197bf79b8
@@ -126,11 +126,8 @@ void host_diag_log_submit(void *plog_hdr_ptr)
|
||||
|
||||
pBuf = (uint8_t *) qdf_mem_malloc(total_len);
|
||||
|
||||
if (!pBuf) {
|
||||
QDF_TRACE(QDF_MODULE_ID_HDD, QDF_TRACE_LEVEL_ERROR,
|
||||
"qdf_mem_malloc failed");
|
||||
if (!pBuf)
|
||||
return;
|
||||
}
|
||||
|
||||
wmsg = (tAniHdr *) pBuf;
|
||||
wmsg->type = PTT_MSG_DIAG_CMDS_TYPE;
|
||||
@@ -219,11 +216,9 @@ void host_diag_event_report_payload(uint16_t event_Id, uint16_t length,
|
||||
|
||||
pBuf = (uint8_t *) qdf_mem_malloc(total_len);
|
||||
|
||||
if (!pBuf) {
|
||||
QDF_TRACE(QDF_MODULE_ID_HDD, QDF_TRACE_LEVEL_ERROR,
|
||||
"qdf_mem_malloc failed");
|
||||
if (!pBuf)
|
||||
return;
|
||||
}
|
||||
|
||||
wmsg = (tAniHdr *) pBuf;
|
||||
wmsg->type = PTT_MSG_DIAG_CMDS_TYPE;
|
||||
wmsg->length = total_len;
|
||||
|
Viittaa uudesa ongelmassa
Block a user