From 6cbc66385e2605f1ecda8f409c04298868492019 Mon Sep 17 00:00:00 2001 From: Manjunathappa Prakash Date: Tue, 14 Aug 2018 18:18:10 -0700 Subject: [PATCH] qcacmn: Reduce HTC/WMI init log message log level Reduce the log level so that logs appear on cnss-diag log instead on console. Change-Id: I6ee4b6ba22ddfe56eb7e93a7242555b8a087c204 CRs-Fixed: 2296956 --- wmi_unified_tlv.c | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) diff --git a/wmi_unified_tlv.c b/wmi_unified_tlv.c index 8ab7075a13..4f65895e4c 100644 --- a/wmi_unified_tlv.c +++ b/wmi_unified_tlv.c @@ -13683,16 +13683,18 @@ static QDF_STATUS send_wow_patterns_to_fw_cmd_tlv(wmi_unified_t wmi_handle, bitmap_pattern->bitmask_len = bitmap_pattern->pattern_len; bitmap_pattern->pattern_id = ptrn_id; - WMI_LOGI("vdev: %d, ptrn id: %d, ptrn len: %d, ptrn offset: %d user %d", + WMI_LOGD("vdev: %d, ptrn id: %d, ptrn len: %d, ptrn offset: %d user %d", cmd->vdev_id, cmd->pattern_id, bitmap_pattern->pattern_len, bitmap_pattern->pattern_offset, user); - WMI_LOGI("Pattern : "); - QDF_TRACE_HEX_DUMP(QDF_MODULE_ID_WMI, QDF_TRACE_LEVEL_INFO, - &bitmap_pattern->patternbuf[0], bitmap_pattern->pattern_len); + WMI_LOGD("Pattern : "); + QDF_TRACE_HEX_DUMP(QDF_MODULE_ID_WMI, QDF_TRACE_LEVEL_DEBUG, + &bitmap_pattern->patternbuf[0], + bitmap_pattern->pattern_len); - WMI_LOGI("Mask : "); - QDF_TRACE_HEX_DUMP(QDF_MODULE_ID_WMI, QDF_TRACE_LEVEL_INFO, - &bitmap_pattern->bitmaskbuf[0], bitmap_pattern->pattern_len); + WMI_LOGD("Mask : "); + QDF_TRACE_HEX_DUMP(QDF_MODULE_ID_WMI, QDF_TRACE_LEVEL_DEBUG, + &bitmap_pattern->bitmaskbuf[0], + bitmap_pattern->pattern_len); buf_ptr += sizeof(WOW_BITMAP_PATTERN_T);