Skip to content

Commit

Permalink
ASoC: pxa2xx-i2s: 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 637ce53 commit 2cf32b7
Showing 1 changed file with 2 additions and 9 deletions.
11 changes: 2 additions & 9 deletions sound/soc/pxa/pxa2xx-i2s.c
Original file line number Diff line number Diff line change
Expand Up @@ -367,19 +367,12 @@ static const struct snd_soc_component_driver pxa_i2s_component = {

static int pxa2xx_i2s_drv_probe(struct platform_device *pdev)
{
return snd_soc_register_component(&pdev->dev, &pxa_i2s_component,
&pxa_i2s_dai, 1);
}

static int pxa2xx_i2s_drv_remove(struct platform_device *pdev)
{
snd_soc_unregister_component(&pdev->dev);
return 0;
return devm_snd_soc_register_component(&pdev->dev, &pxa_i2s_component,
&pxa_i2s_dai, 1);
}

static struct platform_driver pxa2xx_i2s_driver = {
.probe = pxa2xx_i2s_drv_probe,
.remove = pxa2xx_i2s_drv_remove,

.driver = {
.name = "pxa2xx-i2s",
Expand Down

0 comments on commit 2cf32b7

Please sign in to comment.