summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKapil Gupta <kapgupta@codeaurora.org>2017-07-17 13:50:59 +0530
committersnandini <snandini@codeaurora.org>2017-08-13 23:38:15 -0700
commit007cb303e9d00534fa9bb04c7659f5fd72d7c52f (patch)
treefbb0dc69de0ae6caed87458473399934e9252968
parenta8017dbf49150210dee13f6d053fd2aa69a693fb (diff)
qcacld-3.0: Remove excessive logging for FILS based connection
Currently host driver is dumping all the connection related info for FILS connection. Add changes to remove excessive logging for FILS connection Change-Id: Ib23a90672413e00c06ae61f01fbbb0fb51edda56 CRs-Fixed: 2077465
-rw-r--r--core/mac/src/pe/lim/lim_process_fils.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/core/mac/src/pe/lim/lim_process_fils.c b/core/mac/src/pe/lim/lim_process_fils.c
index b3e679d348ff..981d9f715947 100644
--- a/core/mac/src/pe/lim/lim_process_fils.c
+++ b/core/mac/src/pe/lim/lim_process_fils.c
@@ -28,7 +28,6 @@
#ifdef WLAN_FEATURE_FILS_SK
-#define WLAN_FILS_DEBUG
#ifdef WLAN_FILS_DEBUG
/**
* lim_fils_data_dump()- dump fils data
@@ -41,7 +40,7 @@
static void lim_fils_data_dump(char *type, uint8_t *data, uint32_t len)
{
- QDF_TRACE(QDF_MODULE_ID_PE, QDF_TRACE_LEVEL_INFO,
+ QDF_TRACE(QDF_MODULE_ID_PE, QDF_TRACE_LEVEL_DEBUG,
("%s : length %d"), type, len);
qdf_trace_hex_dump(QDF_MODULE_ID_PE, QDF_TRACE_LEVEL_INFO, data, len);
}