1
0
Fork 0

ASoC: spear: Use devm_snd_dmaengine_pcm_register

Makes the code slightly shorter.

Signed-off-by: Lars-Peter Clausen <lars@metafoo.de>
Acked-by: Rajeev Kumar <rajeev-dlh.kumar@st.com>
Signed-off-by: Mark Brown <broonie@linaro.org>
hifive-unleashed-5.1
Lars-Peter Clausen 2013-11-28 08:50:36 +01:00 committed by Mark Brown
parent 21585ee848
commit d71b3ef44f
1 changed files with 1 additions and 8 deletions

View File

@ -49,18 +49,12 @@ static const struct snd_dmaengine_pcm_config spear_dmaengine_pcm_config = {
static int spear_soc_platform_probe(struct platform_device *pdev)
{
return snd_dmaengine_pcm_register(&pdev->dev,
return devm_snd_dmaengine_pcm_register(&pdev->dev,
&spear_dmaengine_pcm_config,
SND_DMAENGINE_PCM_FLAG_NO_DT |
SND_DMAENGINE_PCM_FLAG_COMPAT);
}
static int spear_soc_platform_remove(struct platform_device *pdev)
{
snd_dmaengine_pcm_unregister(&pdev->dev);
return 0;
}
static struct platform_driver spear_pcm_driver = {
.driver = {
.name = "spear-pcm-audio",
@ -68,7 +62,6 @@ static struct platform_driver spear_pcm_driver = {
},
.probe = spear_soc_platform_probe,
.remove = spear_soc_platform_remove,
};
module_platform_driver(spear_pcm_driver);