[alsa-devel] [PATCH V2] ASoC: omap-dmic: Use devm_snd_soc_register_component

Manish Badarkhe badarkhe.manish at gmail.com
Tue Jul 8 18:53:17 CEST 2014


Replaced snd_soc_register_component with its devres equivalent,
devm_snd_soc_register_component.

Signed-off-by: Manish Badarkhe <badarkhe.manish at gmail.com>
---
Changes since V1:
        Aligned function parameter properly.

:100644 100644 6925d71... f125eb9... M	sound/soc/omap/omap-dmic.c
 sound/soc/omap/omap-dmic.c |    6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/sound/soc/omap/omap-dmic.c b/sound/soc/omap/omap-dmic.c
index 6925d71..f125eb9 100644
--- a/sound/soc/omap/omap-dmic.c
+++ b/sound/soc/omap/omap-dmic.c
@@ -490,8 +490,9 @@ static int asoc_dmic_probe(struct platform_device *pdev)
 	}
 
 
-	ret = snd_soc_register_component(&pdev->dev, &omap_dmic_component,
-					 &omap_dmic_dai, 1);
+	ret = devm_snd_soc_register_component(&pdev->dev,
+					      &omap_dmic_component,
+					      &omap_dmic_dai, 1);
 	if (ret)
 		goto err_put_clk;
 
@@ -510,7 +511,6 @@ static int asoc_dmic_remove(struct platform_device *pdev)
 {
 	struct omap_dmic *dmic = platform_get_drvdata(pdev);
 
-	snd_soc_unregister_component(&pdev->dev);
 	clk_put(dmic->fclk);
 
 	return 0;
-- 
1.7.10.4



More information about the Alsa-devel mailing list