diff options
author | Axel Lin <axel.lin@ingics.com> | 2015-08-29 23:07:33 -0400 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2015-08-30 07:15:10 -0400 |
commit | e8de871e19668257972b167aabd56bb5faae784c (patch) | |
tree | 1078ad1f31c2bc194360ba8d3a85730d81a4d31e | |
parent | 92eca20bbeaa4ec1908bad8aeefcaa2d98e302ff (diff) |
ASoC: sh: dma-sh7760: Convert to devm_snd_soc_register_platform
Signed-off-by: Axel Lin <axel.lin@ingics.com>
Acked-by: Manuel Lauss <manuel.lauss@gmail.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
-rw-r--r-- | sound/soc/sh/dma-sh7760.c | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/sound/soc/sh/dma-sh7760.c b/sound/soc/sh/dma-sh7760.c index fd11404a3bc7..8fad4441c87d 100644 --- a/sound/soc/sh/dma-sh7760.c +++ b/sound/soc/sh/dma-sh7760.c | |||
@@ -327,13 +327,7 @@ static struct snd_soc_platform_driver sh7760_soc_platform = { | |||
327 | 327 | ||
328 | static int sh7760_soc_platform_probe(struct platform_device *pdev) | 328 | static int sh7760_soc_platform_probe(struct platform_device *pdev) |
329 | { | 329 | { |
330 | return snd_soc_register_platform(&pdev->dev, &sh7760_soc_platform); | 330 | return devm_snd_soc_register_platform(&pdev->dev, &sh7760_soc_platform); |
331 | } | ||
332 | |||
333 | static int sh7760_soc_platform_remove(struct platform_device *pdev) | ||
334 | { | ||
335 | snd_soc_unregister_platform(&pdev->dev); | ||
336 | return 0; | ||
337 | } | 331 | } |
338 | 332 | ||
339 | static struct platform_driver sh7760_pcm_driver = { | 333 | static struct platform_driver sh7760_pcm_driver = { |
@@ -342,7 +336,6 @@ static struct platform_driver sh7760_pcm_driver = { | |||
342 | }, | 336 | }, |
343 | 337 | ||
344 | .probe = sh7760_soc_platform_probe, | 338 | .probe = sh7760_soc_platform_probe, |
345 | .remove = sh7760_soc_platform_remove, | ||
346 | }; | 339 | }; |
347 | 340 | ||
348 | module_platform_driver(sh7760_pcm_driver); | 341 | module_platform_driver(sh7760_pcm_driver); |