Skip to content

Commit

Permalink
fix no arg in buffer_alloc, merge into first commit
Browse files Browse the repository at this point in the history
  • Loading branch information
tobonex committed Sep 1, 2023
1 parent 55d9767 commit 0b0cce4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/audio/dai-legacy.c
Original file line number Diff line number Diff line change
Expand Up @@ -568,7 +568,7 @@ int dai_common_params(struct dai_data *dd, struct comp_dev *dev,
}
} else {
dd->dma_buffer = buffer_alloc(buffer_size, SOF_MEM_CAPS_DMA, 0,
addr_align);
addr_align, false);
if (!dd->dma_buffer) {
comp_err(dev, "dai_params(): failed to alloc dma buffer");
return -ENOMEM;
Expand Down

0 comments on commit 0b0cce4

Please sign in to comment.