[alsa-devel] [PATCH] ASoC: sti_uniperif: Ensure component is unregistered when unload module
Axel Lin
axel.lin at ingics.com
Sat Aug 29 17:06:32 CEST 2015
Use devm_snd_soc_register_component to ensure component is unregistered
when unload the module.
Signed-off-by: Axel Lin <axel.lin at ingics.com>
---
sound/soc/sti/sti_uniperif.c | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/sound/soc/sti/sti_uniperif.c b/sound/soc/sti/sti_uniperif.c
index dffabf3..39bcefe 100644
--- a/sound/soc/sti/sti_uniperif.c
+++ b/sound/soc/sti/sti_uniperif.c
@@ -224,9 +224,9 @@ static int sti_uniperiph_probe(struct platform_device *pdev)
dev_set_drvdata(&pdev->dev, priv);
- ret = snd_soc_register_component(&pdev->dev,
- &sti_uniperiph_dai_component,
- priv->dai, 1);
+ ret = devm_snd_soc_register_component(&pdev->dev,
+ &sti_uniperiph_dai_component,
+ priv->dai, 1);
if (ret < 0)
return ret;
--
2.1.0
More information about the Alsa-devel
mailing list