dai: (cosmetic) fix function name in trace strings

Trace prints often contain open-coded function names in them. When
functions get renamed or trace prints are moved to other functions,
those strings sometimes are forgotten. Fix two such cases.

Signed-off-by: Guennadi Liakhovetski <guennadi.liakhovetski@linux.intel.com>
This commit is contained in:
Guennadi Liakhovetski 2021-08-05 14:49:58 +02:00 committed by Liam Girdwood
parent d8ed34b1d1
commit 4095fefd6c
1 changed files with 2 additions and 2 deletions

View File

@ -594,12 +594,12 @@ static int dai_config_prepare(struct comp_dev *dev)
/* allocate DMA channel */
dd->chan = dma_channel_get(dd->dma, channel);
if (!dd->chan) {
comp_err(dev, "dai_config(): dma_channel_get() failed");
comp_err(dev, "dai_config_prepare(): dma_channel_get() failed");
dd->chan = NULL;
return -EIO;
}
comp_info(dev, "dai_config(): new configured dma channel index %d",
comp_info(dev, "dai_config_prepare(): new configured dma channel index %d",
dd->chan->index);
/* setup callback */