summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSravan Kumar Kairam <sgoud@codeaurora.org>2016-12-26 00:23:16 +0530
committerqcabuildsw <qcabuildsw@localhost>2017-01-09 13:11:51 -0800
commit1767544aba983f137a193b21c4306405e213ca84 (patch)
treee5028ff0e914224b709946e204906a38ffdc9162
parent21f8e420c0ee7f9b36f7bbafc936dd5cff29f23a (diff)
qcacld-3.0: Reduce the severity of IPA wlan log level
Currently some IPA debug logs severity level is fatal which appears in the kernel dmesg logs leads to excessive logging. Reduce the severity of the IPA wlan host debug logs which do not indicate error. Change-Id: I2d1086a2e85fd473452a48032751337e0c8ddcc1 CRs-Fixed: 1105130
-rw-r--r--core/hdd/src/wlan_hdd_ipa.c8
1 files changed, 3 insertions, 5 deletions
diff --git a/core/hdd/src/wlan_hdd_ipa.c b/core/hdd/src/wlan_hdd_ipa.c
index 68258a29426c..9c662b90b7ec 100644
--- a/core/hdd/src/wlan_hdd_ipa.c
+++ b/core/hdd/src/wlan_hdd_ipa.c
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2013-2016 The Linux Foundation. All rights reserved.
+ * Copyright (c) 2013-2017 The Linux Foundation. All rights reserved.
*
* Previously licensed under the ISC license by Qualcomm Atheros, Inc.
*
@@ -3152,11 +3152,9 @@ static int __hdd_ipa_set_perf_level(hdd_context_t *hdd_ctx, uint64_t tx_packets,
else
next_prod_bw = hdd_ctx->config->IpaLowBandwidthMbps;
- HDD_IPA_LOG(LOGOFF,
- "CONS perf curr: %d, next: %d",
+ hdd_info("CONS perf curr: %d, next: %d",
hdd_ipa->curr_cons_bw, next_cons_bw);
- HDD_IPA_LOG(LOGOFF,
- "PROD perf curr: %d, next: %d",
+ hdd_info("PROD perf curr: %d, next: %d",
hdd_ipa->curr_prod_bw, next_prod_bw);
if (hdd_ipa->curr_cons_bw != next_cons_bw) {