From: Lars-Peter Clausen Date: Thu, 28 Nov 2013 07:50:34 +0000 (+0100) Subject: ASoC: ep93xx: Use devm_snd_dmaengine_pcm_register() X-Git-Tag: firefly_0821_release~176^2~4492^2~11^2~38^2^18~3 X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=237eeb1c044fdd0f406a8484ee31884e34b9dfc5;p=firefly-linux-kernel-4.4.55.git ASoC: ep93xx: Use devm_snd_dmaengine_pcm_register() Makes the code slightly shorter. Signed-off-by: Lars-Peter Clausen Signed-off-by: Mark Brown --- diff --git a/sound/soc/cirrus/ep93xx-pcm.c b/sound/soc/cirrus/ep93xx-pcm.c index cfe517e68009..fdb8b8feb4ed 100644 --- a/sound/soc/cirrus/ep93xx-pcm.c +++ b/sound/soc/cirrus/ep93xx-pcm.c @@ -78,19 +78,13 @@ static const struct snd_dmaengine_pcm_config ep93xx_dmaengine_pcm_config = { static int ep93xx_soc_platform_probe(struct platform_device *pdev) { - return snd_dmaengine_pcm_register(&pdev->dev, + return devm_snd_dmaengine_pcm_register(&pdev->dev, &ep93xx_dmaengine_pcm_config, SND_DMAENGINE_PCM_FLAG_NO_RESIDUE | SND_DMAENGINE_PCM_FLAG_NO_DT | SND_DMAENGINE_PCM_FLAG_COMPAT); } -static int ep93xx_soc_platform_remove(struct platform_device *pdev) -{ - snd_dmaengine_pcm_unregister(&pdev->dev); - return 0; -} - static struct platform_driver ep93xx_pcm_driver = { .driver = { .name = "ep93xx-pcm-audio", @@ -98,7 +92,6 @@ static struct platform_driver ep93xx_pcm_driver = { }, .probe = ep93xx_soc_platform_probe, - .remove = ep93xx_soc_platform_remove, }; module_platform_driver(ep93xx_pcm_driver);