Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 0 additions & 9 deletions src/audio/pipeline/pipeline-graph.c
Original file line number Diff line number Diff line change
Expand Up @@ -112,9 +112,6 @@ struct pipeline *pipeline_new(uint32_t pipeline_id, uint32_t priority, uint32_t
pipe_cl_info("pipeline new pipe_id %d priority %d",
pipeline_id, priority);

/* show heap status */
heap_trace_all(0);

/* allocate new pipeline */
p = rzalloc(SOF_MEM_ZONE_RUNTIME, 0, SOF_MEM_CAPS_RAM, sizeof(*p));
if (!p) {
Expand Down Expand Up @@ -211,9 +208,6 @@ int pipeline_free(struct pipeline *p)
/* now free the pipeline */
rfree(p);

/* show heap status */
heap_trace_all(0);

return 0;
}

Expand Down Expand Up @@ -276,9 +270,6 @@ int pipeline_complete(struct pipeline *p, struct comp_dev *source,
p->sink_comp = sink;
p->status = COMP_STATE_READY;

/* show heap status */
heap_trace_all(0);

return 0;
}

Expand Down