ASoC: sh: ssi: Convert to devm_snd_soc_register_component
authorAxel Lin <axel.lin@ingics.com>
Fri, 28 Aug 2015 02:50:53 +0000 (10:50 +0800)
committerMark Brown <broonie@kernel.org>
Fri, 28 Aug 2015 16:28:49 +0000 (17:28 +0100)
Signed-off-by: Axel Lin <axel.lin@ingics.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
sound/soc/sh/ssi.c

index ab13146e4f826cb8182ce3209e276f1af37bf418..89ed1b107ac52c5f808ba9208dc3ef45e84803e8 100644 (file)
@@ -385,14 +385,9 @@ static const struct snd_soc_component_driver sh4_ssi_component = {
 
 static int sh4_soc_dai_probe(struct platform_device *pdev)
 {
-       return snd_soc_register_component(&pdev->dev, &sh4_ssi_component,
-                                         sh4_ssi_dai, ARRAY_SIZE(sh4_ssi_dai));
-}
-
-static int sh4_soc_dai_remove(struct platform_device *pdev)
-{
-       snd_soc_unregister_component(&pdev->dev);
-       return 0;
+       return devm_snd_soc_register_component(&pdev->dev, &sh4_ssi_component,
+                                              sh4_ssi_dai,
+                                              ARRAY_SIZE(sh4_ssi_dai));
 }
 
 static struct platform_driver sh4_ssi_driver = {
@@ -401,7 +396,6 @@ static struct platform_driver sh4_ssi_driver = {
        },
 
        .probe = sh4_soc_dai_probe,
-       .remove = sh4_soc_dai_remove,
 };
 
 module_platform_driver(sh4_ssi_driver);