Skip to content

Commit

Permalink
ASoC: sh: ssi: Convert to devm_snd_soc_register_component
Browse files Browse the repository at this point in the history
Signed-off-by: Axel Lin <axel.lin@ingics.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
  • Loading branch information
Axel Lin authored and Mark Brown committed Aug 28, 2015
1 parent bc0195a commit 92eca20
Showing 1 changed file with 3 additions and 9 deletions.
12 changes: 3 additions & 9 deletions sound/soc/sh/ssi.c
Original file line number Diff line number Diff line change
Expand Up @@ -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 = {
Expand All @@ -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);
Expand Down

0 comments on commit 92eca20

Please sign in to comment.