mirror of https://github.com/thesofproject/sof.git
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:
parent
61a2c75bf8
commit
2a70f114bc
|
@ -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);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue