qcacmn: Remove unnecessary logs in loop

There is unnecessary logs in loop which affect useful log capturing.

Change-Id: I37b2c8123a280e4ec080ac1fb75e43135936fd79
CRs-Fixed: 2552104
This commit is contained in:
Wu Gao
2019-10-24 10:02:32 +08:00
committed by nshrivas
父節點 5304724e59
當前提交 5988e8b7d2
共有 2 個文件被更改,包括 7 次插入10 次删除

查看文件

@@ -146,12 +146,13 @@ static void wlan_serialization_destroy_cmd_pool(
qdf_list_node_t *node = NULL;
struct wlan_serialization_command_list *cmd_list;
ser_debug("Destroy cmd pool list %pk, size %d",
&pdev_queue->cmd_pool_list,
qdf_list_size(&pdev_queue->cmd_pool_list));
while (!qdf_list_empty(&pdev_queue->cmd_pool_list)) {
qdf_list_remove_front(&pdev_queue->cmd_pool_list,
&node);
cmd_list = (struct wlan_serialization_command_list *)node;
ser_debug("Node being freed from global pool %pK",
cmd_list);
qdf_mem_free(cmd_list);
}
@@ -197,10 +198,12 @@ wlan_serialization_create_cmd_pool(
&pdev_queue->cmd_pool_list,
&cmd_list_ptr->pdev_node);
cmd_list_ptr->cmd_in_use = 0;
ser_debug("Created node at %pK and inserted to pool",
cmd_list_ptr);
}
ser_debug("Create cmd pool list %pK, size %d",
&pdev_queue->cmd_pool_list,
qdf_list_size(&pdev_queue->cmd_pool_list));
status = QDF_STATUS_SUCCESS;
error: