qcacmn: Clean up unwanted prints or change to appropriate log levels

Remove unwanted prints from the dirver and also change tha log levels
from some of the prints which could be useful in debug pruposes only.

Change-Id: I2b4e0c94fcf1571b332fc005b34bc4b7bcb4b7c5
This commit is contained in:
Vivek
2017-06-21 11:38:28 +05:30
committed by snandini
parent 5e5f8efbd2
commit f85a42b39d
2 changed files with 2 additions and 2 deletions

View File

@@ -3519,7 +3519,6 @@ send_wmm_update_cmd_non_tlv(wmi_unified_t wmi_handle,
struct wmi_host_wmeParams *wmep; struct wmi_host_wmeParams *wmep;
buf = wmi_buf_alloc(wmi_handle, len); buf = wmi_buf_alloc(wmi_handle, len);
qdf_print("%s:\n", __func__);
if (!buf) { if (!buf) {
qdf_print("%s:wmi_buf_alloc failed\n", __func__); qdf_print("%s:wmi_buf_alloc failed\n", __func__);
return QDF_STATUS_SUCCESS; return QDF_STATUS_SUCCESS;

View File

@@ -15099,7 +15099,8 @@ static QDF_STATUS init_cmd_send_tlv(wmi_unified_t wmi_handle,
host_mem_chunks[idx].ptr = param->mem_chunks[idx].paddr; host_mem_chunks[idx].ptr = param->mem_chunks[idx].paddr;
host_mem_chunks[idx].size = param->mem_chunks[idx].len; host_mem_chunks[idx].size = param->mem_chunks[idx].len;
host_mem_chunks[idx].req_id = param->mem_chunks[idx].req_id; host_mem_chunks[idx].req_id = param->mem_chunks[idx].req_id;
qdf_print("chunk %d len %d requested ,ptr 0x%x ", QDF_TRACE(QDF_MODULE_ID_ANY, QDF_TRACE_LEVEL_DEBUG,
"chunk %d len %d requested ,ptr 0x%x ",
idx, host_mem_chunks[idx].size, idx, host_mem_chunks[idx].size,
host_mem_chunks[idx].ptr); host_mem_chunks[idx].ptr);
} }