ASoC: fsl: fsl_ssi: Add dev_err_probe if PCM DMA init fails

This happens especially if this driver is built-in, but SDMA driver
is configured as module.

Signed-off-by: Alexander Stein <alexander.stein@ew.tq-group.com>
Link: https://msgid.link/r/20240314141642.2943605-1-alexander.stein@ew.tq-group.com
Signed-off-by: Mark Brown <broonie@kernel.org>
This commit is contained in:
Alexander Stein 2024-03-14 15:16:42 +01:00 committed by Mark Brown
parent 1fdc23aa57
commit 3ca49e7f94
No known key found for this signature in database
GPG Key ID: 24D68B725D5487D0

View File

@ -1401,8 +1401,10 @@ static int fsl_ssi_imx_probe(struct platform_device *pdev,
goto error_pcm;
} else {
ret = imx_pcm_dma_init(pdev);
if (ret)
if (ret) {
dev_err_probe(dev, ret, "Failed to init PCM DMA\n");
goto error_pcm;
}
}
return 0;