Bläddra i källkod

qcacmn: Reduce log level for few prints to debug

Reduce log level for few prints to debug to avoid flooding
of prints to console.

Change-Id: I514585cc87d51ead15fb1f40d45f62023628d9bb
CRs-Fixed: 2296839
Yeshwanth Sriram Guntuka 6 år sedan
förälder
incheckning
f3c286ed15

+ 4 - 4
target_if/init_deinit/src/init_cmd_api.c

@@ -476,12 +476,12 @@ void init_deinit_prepare_send_init_cmd(
 	if (ret_val != QDF_STATUS_SUCCESS)
 		return;
 
-	target_if_info("FW version 0x%x ", info->target_caps.fw_version);
+	target_if_debug("FW version 0x%x ", info->target_caps.fw_version);
 	if (init_deinit_is_service_ext_msg(psoc, tgt_hdl) == QDF_STATUS_SUCCESS)
-		target_if_info("0x%x\n",
-			       info->service_ext_param.fw_build_vers_ext);
+		target_if_debug("0x%x\n",
+				info->service_ext_param.fw_build_vers_ext);
 	else
-		target_if_info("0x%x\n", info->target_caps.fw_version_1);
+		target_if_debug("0x%x\n", info->target_caps.fw_version_1);
 
 	wmi_unified_init_cmd_send(wmi_handle, &init_param);
 

+ 1 - 1
umac/dfs/core/src/filtering/dfs_partial_offload_radar.c

@@ -313,7 +313,7 @@ void dfs_get_po_radars(struct wlan_dfs *dfs)
 	tx_ops = &(psoc->soc_cb.tx_ops.target_tx_ops);
 	switch (dfsdomain) {
 	case DFS_FCC_DOMAIN:
-		dfs_info(dfs, WLAN_DEBUG_DFS_ALWAYS, "FCC domain");
+		dfs_debug(dfs, WLAN_DEBUG_DFS_ALWAYS, "FCC domain");
 		rinfo.dfsdomain = DFS_FCC_DOMAIN;
 		dfs_assign_fcc_pulse_table(&rinfo, target_type, tx_ops);
 		break;

+ 1 - 1
umac/dfs/core/src/misc/dfs_filter_init.c

@@ -97,7 +97,7 @@ int dfs_main_attach(struct wlan_dfs *dfs)
 
 	dfs_clear_stats(dfs);
 	dfs->dfs_event_log_on = 1;
-	dfs_info(dfs, WLAN_DEBUG_DFS_ALWAYS, "event log enabled by default");
+	dfs_debug(dfs, WLAN_DEBUG_DFS_ALWAYS, "event log enabled by default");
 
 	dfs->dfs_enable = 1;
 

+ 2 - 2
umac/tdls/dispatcher/src/wlan_tdls_ucfg_api.c

@@ -269,7 +269,7 @@ QDF_STATUS ucfg_tdls_psoc_open(struct wlan_objmgr_psoc *psoc)
 	QDF_STATUS status;
 	struct tdls_soc_priv_obj *soc_obj;
 
-	tdls_notice("tdls psoc open");
+	tdls_debug("tdls psoc open");
 	soc_obj = wlan_objmgr_psoc_get_comp_private_obj(psoc,
 							WLAN_UMAC_COMP_TDLS);
 	if (!soc_obj) {
@@ -289,7 +289,7 @@ QDF_STATUS ucfg_tdls_update_config(struct wlan_objmgr_psoc *psoc,
 	uint32_t tdls_feature_flags;
 	struct policy_mgr_tdls_cbacks tdls_pm_call_backs;
 
-	tdls_notice("tdls update config ");
+	tdls_debug("tdls update config ");
 	if (!psoc || !req) {
 		tdls_err("psoc: 0x%pK, req: 0x%pK", psoc, req);
 		return QDF_STATUS_E_FAILURE;

+ 2 - 2
wmi/src/wmi_unified_tlv.c

@@ -13329,8 +13329,8 @@ QDF_STATUS send_pdev_set_dual_mac_config_cmd_tlv(wmi_unified_t wmi_handle,
 							WMI_HOST_PDEV_ID_SOC);
 	cmd->concurrent_scan_config_bits = msg->scan_config;
 	cmd->fw_mode_config_bits = msg->fw_mode_config;
-	WMI_LOGI("%s: scan_config:%x fw_mode_config:%x",
-			__func__, msg->scan_config, msg->fw_mode_config);
+	WMI_LOGD("%s: scan_config:%x fw_mode_config:%x",
+		 __func__, msg->scan_config, msg->fw_mode_config);
 
 	if (wmi_unified_cmd_send(wmi_handle, buf, len,
 				WMI_PDEV_SET_MAC_CONFIG_CMDID)) {