Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 37e60717 authored by Mark Brown's avatar Mark Brown
Browse files

ASoC: samsung: Check to see if we managed to allocate a channel

parent 64183656
Loading
Loading
Loading
Loading
+4 −0
Original line number Diff line number Diff line
@@ -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);
	}