summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMasti, Narayanraddi <c_nmasti@qti.qualcomm.com>2016-05-23 15:46:17 +0530
committerAnjaneedevi Kapparapu <akappa@codeaurora.org>2016-05-24 15:44:08 +0530
commit235e8ba8612840ce3cb1c5a1ddd301a2cfa7867d (patch)
treee8f8c0dc1707f96a411390cbb6bea69f50401433
parent638f8deba058d59b54f1d844631af204229b227e (diff)
qcacld-2.0: Fix incorrect debug level in wmi_config_debug_module_cmd API
Due to incorrect debug level in wmi_config_debug_module_cmd log prints are directed to kmsg. Fix is to change debug level from error to info. Change-Id: I2e2fbb1fd514c6dbc8b97895a3bb01998b1a0072 CRs-Fixed: 1019620
-rw-r--r--CORE/UTILS/FWLOG/dbglog_host.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/CORE/UTILS/FWLOG/dbglog_host.c b/CORE/UTILS/FWLOG/dbglog_host.c
index c1275ffe163d..a1ba79c0c8b6 100644
--- a/CORE/UTILS/FWLOG/dbglog_host.c
+++ b/CORE/UTILS/FWLOG/dbglog_host.c
@@ -1378,7 +1378,8 @@ wmi_config_debug_module_cmd(wmi_unified_t wmi_handle, A_UINT32 param, A_UINT32
}
}
- AR_DEBUG_PRINTF(ATH_DEBUG_ERR, ("wmi_dbg_cfg_send: param 0x%x val 0x%x \n ", param, val));
+ AR_DEBUG_PRINTF(ATH_DEBUG_INFO, ("wmi_dbg_cfg_send: param 0x%x val 0x%x \n",
+ param, val));
status = wmi_unified_cmd_send(wmi_handle, buf,
len, WMI_DBGLOG_CFG_CMDID);