diff options
| author | Naveen Rawat <naveenrawat@codeaurora.org> | 2017-12-21 14:33:55 -0800 |
|---|---|---|
| committer | snandini <snandini@codeaurora.org> | 2017-12-21 16:17:10 -0800 |
| commit | 2416c862f02fe4a82f591c5ed560fc598076d75d (patch) | |
| tree | ed32ab1d6054752f2a1e39b7b0fdd6f5c29f236a | |
| parent | d90086d0ca0e59a8e9c1661eeb05d4314c377344 (diff) | |
qcacld-3.0: Change log level of debug message
Change log level of warning message to debug in functions:
__lim_process_operating_mode_action_frame
lim_is_robust_mgmt_action_frame
Change-Id: I8572dc9e6182767809df810fd6f74a307508e32a
CRs-Fixed: 2162961
| -rw-r--r-- | core/mac/src/pe/lim/lim_process_action_frame.c | 2 | ||||
| -rw-r--r-- | core/mac/src/pe/lim/lim_utils.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/core/mac/src/pe/lim/lim_process_action_frame.c b/core/mac/src/pe/lim/lim_process_action_frame.c index fa3a4744b4c2..d0cb44918a0e 100644 --- a/core/mac/src/pe/lim/lim_process_action_frame.c +++ b/core/mac/src/pe/lim/lim_process_action_frame.c @@ -497,7 +497,7 @@ static void __lim_process_operating_mode_action_frame(tpAniSirGlobal mac_ctx, * mode is disabled in INI. */ if (WNI_CFG_CHANNEL_BONDING_MODE_DISABLE == cb_mode) { - pe_warn("channel bonding disabled"); + pe_debug("channel bonding disabled"); goto update_nss; } diff --git a/core/mac/src/pe/lim/lim_utils.c b/core/mac/src/pe/lim/lim_utils.c index a18ac887ebaa..435c0c559f4c 100644 --- a/core/mac/src/pe/lim/lim_utils.c +++ b/core/mac/src/pe/lim/lim_utils.c @@ -7045,7 +7045,7 @@ bool lim_is_robust_mgmt_action_frame(uint8_t action_category) case SIR_MAC_ACTION_FST: return true; default: - pe_warn("non-PMF action category: %d", action_category); + pe_debug("non-PMF action category: %d", action_category); break; } return false; |
