From 61e086ff92bb3805a80c5a67f17b75d6ad3194dd Mon Sep 17 00:00:00 2001 From: Srinivas Girigowda Date: Mon, 19 Jun 2017 17:20:20 -0700 Subject: [PATCH] qcacmn: Move the logs to appropriate log levels Move the logs to appropriate log levels. Change-Id: I9e28ecc7a62be6108ba13e510b8b42b843c97468 CRs-Fixed: 2063646 --- wmi_unified_api.c | 2 +- wmi_unified_tlv.c | 10 +++++----- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/wmi_unified_api.c b/wmi_unified_api.c index a91cbd7ddf..ca99db49e0 100644 --- a/wmi_unified_api.c +++ b/wmi_unified_api.c @@ -3292,7 +3292,7 @@ QDF_STATUS wmi_unified_set_active_bpf_mode_cmd(void *wmi_hdl, wmi_unified_t wmi = (wmi_unified_t)wmi_hdl; if (!wmi->ops->send_set_active_bpf_mode_cmd) { - WMI_LOGI("send_set_active_bpf_mode_cmd op is NULL"); + WMI_LOGD("send_set_active_bpf_mode_cmd op is NULL"); return QDF_STATUS_E_FAILURE; } diff --git a/wmi_unified_tlv.c b/wmi_unified_tlv.c index 2f3a056f1a..0c71599267 100644 --- a/wmi_unified_tlv.c +++ b/wmi_unified_tlv.c @@ -5506,21 +5506,21 @@ static QDF_STATUS send_roam_scan_offload_mode_cmd_tlv(wmi_unified_t wmi_handle, roam_req->fw_okc) { WMI_SET_ROAM_OFFLOAD_OKC_ENABLED (roam_offload_11i->flags); - WMI_LOGE("LFR3:OKC enabled"); + WMI_LOGI("LFR3:OKC enabled"); } else { WMI_SET_ROAM_OFFLOAD_OKC_DISABLED (roam_offload_11i->flags); - WMI_LOGE("LFR3:OKC disabled"); + WMI_LOGI("LFR3:OKC disabled"); } if (roam_req->roam_key_mgmt_offload_enabled && roam_req->fw_pmksa_cache) { WMI_SET_ROAM_OFFLOAD_PMK_CACHE_ENABLED (roam_offload_11i->flags); - WMI_LOGE("LFR3:PMKSA caching enabled"); + WMI_LOGI("LFR3:PMKSA caching enabled"); } else { WMI_SET_ROAM_OFFLOAD_PMK_CACHE_DISABLED (roam_offload_11i->flags); - WMI_LOGE("LFR3:PMKSA caching disabled"); + WMI_LOGI("LFR3:PMKSA caching disabled"); } qdf_mem_copy(roam_offload_11i->pmk, @@ -7154,7 +7154,7 @@ static QDF_STATUS send_pno_start_cmd_tlv(wmi_unified_t wmi_handle, nlo_list[i].bcast_nw_type.valid = true; nlo_list[i].bcast_nw_type.bcast_nw_type = pno->networks_list[i].bc_new_type; - WMI_LOGI("Broadcast NW type (%u)", + WMI_LOGD("Broadcast NW type (%u)", nlo_list[i].bcast_nw_type.bcast_nw_type); } buf_ptr += cmd->no_of_ssids * sizeof(nlo_configured_parameters);