mirror of
https://github.com/torvalds/linux.git
synced 2024-11-14 08:02:07 +00:00
ASoC: samsung: Check to see if we managed to allocate a channel
Signed-off-by: Mark Brown <broonie@linaro.org> Acked-by: Sangbeom Kim <sbkim73@samsung.com>
This commit is contained in:
parent
6418365688
commit
37e6071787
@ -176,6 +176,10 @@ static int dma_hw_params(struct snd_pcm_substream *substream,
|
||||
prtd->params->ch = prtd->params->ops->request(
|
||||
prtd->params->channel, &req, rtd->cpu_dai->dev,
|
||||
prtd->params->ch_name);
|
||||
if (!prtd->params->ch) {
|
||||
pr_err("Failed to allocate DMA channel\n");
|
||||
return -ENXIO;
|
||||
}
|
||||
prtd->params->ops->config(prtd->params->ch, &config);
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user