Browse Source

qcacmn: Fix excessive log in send_wow_delete_pattern_cmd_tlv

Once user configs hundreds of wow pattern, it will cause
log flood here.

Remove the log here.

Change-Id: I56d749ca4b7db91a72c5a7fe12dbcd751397d19e
CRs-Fixed: 2402655
Jingxiang Ge 6 years ago
parent
commit
c9aed3dc45
1 changed files with 1 additions and 5 deletions
  1. 1 5
      wmi/src/wmi_unified_pmo_tlv.c

+ 1 - 5
wmi/src/wmi_unified_pmo_tlv.c

@@ -1,6 +1,5 @@
-
 /*
- * Copyright (c) 2018 The Linux Foundation. All rights reserved.
+ * Copyright (c) 2018-2019 The Linux Foundation. All rights reserved.
  *
  * Permission to use, copy, modify, and/or distribute this software for
  * any purpose with or without fee is hereby granted, provided that the
@@ -1581,9 +1580,6 @@ static QDF_STATUS send_wow_delete_pattern_cmd_tlv(wmi_unified_t wmi_handle,
 	cmd->pattern_id = ptrn_id;
 	cmd->pattern_type = WOW_BITMAP_PATTERN;
 
-	WMI_LOGI("Deleting pattern id: %d vdev id %d in fw",
-		 cmd->pattern_id, vdev_id);
-
 	wmi_mtrace(WMI_WOW_DEL_WAKE_PATTERN_CMDID, cmd->vdev_id, 0);
 	ret = wmi_unified_cmd_send(wmi_handle, buf, len,
 				   WMI_WOW_DEL_WAKE_PATTERN_CMDID);