Browse Source

qcacmn: Suppress the verbose log from policy mgr

When DBS is disabled in WLAN INI file(e.g. on some platforms
where RM chipset is attached), the policy manager will keep
posting a verbose message saying 'DBS is disabled from ini'.
This isn't exhibiting much useful information, and may cause
watchdog bark when SnS stress is running.

Suppress the verbose log by lowering it's debug level.

Change-Id: Ie8d5a1784940f483cc671da43f734851c0b5adb6
CRs-Fixed: 2214201
wadesong 7 years ago
parent
commit
87f18a3869
1 changed files with 1 additions and 1 deletions
  1. 1 1
      umac/cmn_services/policy_mgr/src/wlan_policy_mgr_get_set_utils.c

+ 1 - 1
umac/cmn_services/policy_mgr/src/wlan_policy_mgr_get_set_utils.c

@@ -743,7 +743,7 @@ bool policy_mgr_is_dbs_enable(struct wlan_objmgr_psoc *psoc)
 	struct policy_mgr_psoc_priv_obj *pm_ctx;
 
 	if (policy_mgr_is_dual_mac_disabled_in_ini(psoc)) {
-		policy_mgr_err("DBS is disabled from ini");
+		policy_mgr_debug("DBS is disabled from ini");
 		return false;
 	}