Skip to content

Commit

Permalink
[DNM] audio: host: Reduce the amount of logs
Browse files Browse the repository at this point in the history
Reducing the logging level for the purpose of the test. In the local
environment, a large amount of logs generated by this component resulted
in IPC timeouts.

Signed-off-by: Tomasz Leman <[email protected]>
  • Loading branch information
tmleman committed Feb 25, 2025
1 parent 988e6fc commit 1540ec0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/audio/host-zephyr.c
Original file line number Diff line number Diff line change
Expand Up @@ -404,8 +404,8 @@ static uint32_t host_get_copy_bytes_normal(struct host_data *hd, struct comp_dev
dma_copy_bytes = MIN(hd->period_bytes, dma_copy_bytes);

if (!dma_copy_bytes)
comp_info(dev, "no bytes to copy, available samples: %d, free_samples: %d",
avail_samples, free_samples);
comp_dbg(dev, "no bytes to copy, available samples: %d, free_samples: %d",
avail_samples, free_samples);

/* dma_copy_bytes should be aligned to minimum possible chunk of
* data to be copied by dma.
Expand Down

0 comments on commit 1540ec0

Please sign in to comment.