dai: trace: fix description for overrun error.

Overruns are when there is no free space available.

Signed-off-by: Liam Girdwood <liam.r.girdwood@linux.intel.com>
This commit is contained in:
Liam Girdwood 2020-05-05 19:40:20 +01:00 committed by Liam Girdwood
parent 61a2c75bf8
commit 2a70f114bc
1 changed files with 1 additions and 1 deletions

View File

@ -664,7 +664,7 @@ static void dai_report_xrun(struct comp_dev *dev, uint32_t bytes)
comp_err(dev, "dai_report_xrun(): underrun due to no data available");
comp_underrun(dev, dd->local_buffer, bytes);
} else {
comp_err(dev, "dai_report_xrun(): overrun due to no data available");
comp_err(dev, "dai_report_xrun(): overrun due to no space available");
comp_overrun(dev, dd->local_buffer, bytes);
}
}