Commit e5180df3 authored by Xiubo Li's avatar Xiubo Li Committed by Mark Brown

ASoC: fsl-sai: Use devm_snd_dmaengine_pcm_register()

Makes the code slightly shorter
Signed-off-by: default avatarXiubo Li <Li.Xiubo@freescale.com>
Signed-off-by: default avatarMark Brown <broonie@linaro.org>
parent a6af47ae
......@@ -443,19 +443,8 @@ static int fsl_sai_probe(struct platform_device *pdev)
if (ret)
return ret;
ret = snd_dmaengine_pcm_register(&pdev->dev, NULL,
return devm_snd_dmaengine_pcm_register(&pdev->dev, NULL,
SND_DMAENGINE_PCM_FLAG_NO_RESIDUE);
if (ret)
return ret;
return 0;
}
static int fsl_sai_remove(struct platform_device *pdev)
{
snd_dmaengine_pcm_unregister(&pdev->dev);
return 0;
}
static const struct of_device_id fsl_sai_ids[] = {
......@@ -465,8 +454,6 @@ static const struct of_device_id fsl_sai_ids[] = {
static struct platform_driver fsl_sai_driver = {
.probe = fsl_sai_probe,
.remove = fsl_sai_remove,
.driver = {
.name = "fsl-sai",
.owner = THIS_MODULE,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment