Skip to content

Commit

Permalink
ASoC: omap-dmic: Use devm_snd_soc_register_component
Browse files Browse the repository at this point in the history
Replaced snd_soc_register_component with its devres equivalent,
devm_snd_soc_register_component.

Signed-off-by: Manish Badarkhe <badarkhe.manish@gmail.com>
Acked-by: Peter Ujfalusi <peter.ujfalusi@ti.com>
Signed-off-by: Mark Brown <broonie@linaro.org>
  • Loading branch information
Manish Badarkhe authored and Mark Brown committed Jul 9, 2014
1 parent 36765c9 commit 159baad
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions sound/soc/omap/omap-dmic.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;

Expand All @@ -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;
Expand Down

0 comments on commit 159baad

Please sign in to comment.