Skip to content
Merged
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
2 changes: 1 addition & 1 deletion src/drivers/intel/hda/hda-dma.c
Original file line number Diff line number Diff line change
Expand Up @@ -945,7 +945,7 @@ static int hda_dma_link_check_xrun(struct dma_chan_data *chan)
uint32_t dgcs = dma_chan_reg_read(chan, DGCS);

if (chan->direction == DMA_DIR_MEM_TO_DEV && dgcs & DGCS_BUR) {
tr_err(&hdma_tr, "hda_dma_link_check_xrun(): underrun detected");
tr_warn(&hdma_tr, "hda_dma_link_check_xrun(): underrun detected");
dma_chan_reg_update_bits(chan, DGCS, DGCS_BUR, DGCS_BUR);
} else if (chan->direction == DMA_DIR_DEV_TO_MEM && dgcs & DGCS_BOR) {
tr_err(&hdma_tr, "hda_dma_link_check_xrun(): overrun detected");
Expand Down