* [PATCH] ASoC: sh: dma-sh7760: Convert to devm_snd_soc_register_platform
@ 2015-08-30 3:07 Axel Lin
2015-08-30 6:22 ` Manuel Lauss
2015-08-30 11:26 ` Applied "ASoC: sh: dma-sh7760: Convert to devm_snd_soc_register_platform" to the asoc tree Mark Brown
0 siblings, 2 replies; 3+ messages in thread
From: Axel Lin @ 2015-08-30 3:07 UTC (permalink / raw)
To: Mark Brown; +Cc: Manuel Lauss, alsa-devel, Liam Girdwood
Signed-off-by: Axel Lin <axel.lin@ingics.com>
---
sound/soc/sh/dma-sh7760.c | 9 +--------
1 file changed, 1 insertion(+), 8 deletions(-)
diff --git a/sound/soc/sh/dma-sh7760.c b/sound/soc/sh/dma-sh7760.c
index fd11404..8fad444 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 = {
static int sh7760_soc_platform_probe(struct platform_device *pdev)
{
- return snd_soc_register_platform(&pdev->dev, &sh7760_soc_platform);
-}
-
-static int sh7760_soc_platform_remove(struct platform_device *pdev)
-{
- snd_soc_unregister_platform(&pdev->dev);
- return 0;
+ return devm_snd_soc_register_platform(&pdev->dev, &sh7760_soc_platform);
}
static struct platform_driver sh7760_pcm_driver = {
@@ -342,7 +336,6 @@ static struct platform_driver sh7760_pcm_driver = {
},
.probe = sh7760_soc_platform_probe,
- .remove = sh7760_soc_platform_remove,
};
module_platform_driver(sh7760_pcm_driver);
--
2.1.0
^ permalink raw reply related [flat|nested] 3+ messages in thread* Re: [PATCH] ASoC: sh: dma-sh7760: Convert to devm_snd_soc_register_platform
2015-08-30 3:07 [PATCH] ASoC: sh: dma-sh7760: Convert to devm_snd_soc_register_platform Axel Lin
@ 2015-08-30 6:22 ` Manuel Lauss
2015-08-30 11:26 ` Applied "ASoC: sh: dma-sh7760: Convert to devm_snd_soc_register_platform" to the asoc tree Mark Brown
1 sibling, 0 replies; 3+ messages in thread
From: Manuel Lauss @ 2015-08-30 6:22 UTC (permalink / raw)
To: Axel Lin; +Cc: alsa-devel, Mark Brown, Liam Girdwood
On Sun, Aug 30, 2015 at 5:07 AM, Axel Lin <axel.lin@ingics.com> wrote:
> Signed-off-by: Axel Lin <axel.lin@ingics.com>
> ---
> sound/soc/sh/dma-sh7760.c | 9 +--------
> 1 file changed, 1 insertion(+), 8 deletions(-)
>
> diff --git a/sound/soc/sh/dma-sh7760.c b/sound/soc/sh/dma-sh7760.c
> index fd11404..8fad444 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 = {
>
> static int sh7760_soc_platform_probe(struct platform_device *pdev)
> {
> - return snd_soc_register_platform(&pdev->dev, &sh7760_soc_platform);
> -}
> -
> -static int sh7760_soc_platform_remove(struct platform_device *pdev)
> -{
> - snd_soc_unregister_platform(&pdev->dev);
> - return 0;
> + return devm_snd_soc_register_platform(&pdev->dev, &sh7760_soc_platform);
> }
>
> static struct platform_driver sh7760_pcm_driver = {
> @@ -342,7 +336,6 @@ static struct platform_driver sh7760_pcm_driver = {
> },
>
> .probe = sh7760_soc_platform_probe,
> - .remove = sh7760_soc_platform_remove,
> };
>
> module_platform_driver(sh7760_pcm_driver);
> --
Looking good,
Acked-by: Manuel Lauss <manuel.lauss@gmail.com>
^ permalink raw reply [flat|nested] 3+ messages in thread* Applied "ASoC: sh: dma-sh7760: Convert to devm_snd_soc_register_platform" to the asoc tree
2015-08-30 3:07 [PATCH] ASoC: sh: dma-sh7760: Convert to devm_snd_soc_register_platform Axel Lin
2015-08-30 6:22 ` Manuel Lauss
@ 2015-08-30 11:26 ` Mark Brown
1 sibling, 0 replies; 3+ messages in thread
From: Mark Brown @ 2015-08-30 11:26 UTC (permalink / raw)
To: Axel Lin, Manuel Lauss, Mark Brown; +Cc: alsa-devel
The patch
ASoC: sh: dma-sh7760: Convert to devm_snd_soc_register_platform
has been applied to the asoc tree at
git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git
All being well this means that it will be integrated into the linux-next
tree (usually sometime in the next 24 hours) and sent to Linus during
the next merge window (or sooner if it is a bug fix), however if
problems are discovered then the patch may be dropped or reverted.
You may get further e-mails resulting from automated or manual testing
and review of the tree, please engage with people reporting problems and
send followup patches addressing any issues that are reported if needed.
If any updates are required or you are submitting further changes they
should be sent as incremental updates against current git, existing
patches will not be replaced.
Please add any relevant lists and maintainers to the CCs when replying
to this mail.
Thanks,
Mark
>From e8de871e19668257972b167aabd56bb5faae784c Mon Sep 17 00:00:00 2001
From: Axel Lin <axel.lin@ingics.com>
Date: Sun, 30 Aug 2015 11:07:33 +0800
Subject: [PATCH] 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>
---
sound/soc/sh/dma-sh7760.c | 9 +--------
1 file changed, 1 insertion(+), 8 deletions(-)
diff --git a/sound/soc/sh/dma-sh7760.c b/sound/soc/sh/dma-sh7760.c
index fd11404..8fad444 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 = {
static int sh7760_soc_platform_probe(struct platform_device *pdev)
{
- return snd_soc_register_platform(&pdev->dev, &sh7760_soc_platform);
-}
-
-static int sh7760_soc_platform_remove(struct platform_device *pdev)
-{
- snd_soc_unregister_platform(&pdev->dev);
- return 0;
+ return devm_snd_soc_register_platform(&pdev->dev, &sh7760_soc_platform);
}
static struct platform_driver sh7760_pcm_driver = {
@@ -342,7 +336,6 @@ static struct platform_driver sh7760_pcm_driver = {
},
.probe = sh7760_soc_platform_probe,
- .remove = sh7760_soc_platform_remove,
};
module_platform_driver(sh7760_pcm_driver);
--
2.5.0
^ permalink raw reply related [flat|nested] 3+ messages in thread
end of thread, other threads:[~2015-08-30 14:18 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-08-30 3:07 [PATCH] ASoC: sh: dma-sh7760: Convert to devm_snd_soc_register_platform Axel Lin
2015-08-30 6:22 ` Manuel Lauss
2015-08-30 11:26 ` Applied "ASoC: sh: dma-sh7760: Convert to devm_snd_soc_register_platform" to the asoc tree Mark Brown
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.