Skip to content

audio: kpb: Fix overruns in kpb module #10067

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 5 commits into from
Jun 25, 2025
Merged
Show file tree
Hide file tree
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
4 changes: 2 additions & 2 deletions src/audio/dai-zephyr.c
Original file line number Diff line number Diff line change
Expand Up @@ -1671,10 +1671,10 @@ int dai_common_copy(struct dai_data *dd, struct comp_dev *dev, pcm_converter_fun
case -EPIPE:
/* DMA status can return -EPIPE and current status content if xrun occurs */
if (dev->direction == SOF_IPC_STREAM_PLAYBACK)
comp_dbg(dev, "dma_get_status() underrun occurred, ret = %u",
comp_dbg(dev, "dma_get_status() underrun occurred, ret = %d",
ret);
else
comp_dbg(dev, "dma_get_status() overrun occurred, ret = %u",
comp_dbg(dev, "dma_get_status() overrun occurred, ret = %d",
ret);
break;
default:
Expand Down
Loading
Loading