* [PATCH 1/3] ASoC: pxa-ssp: Convert to devm_snd_soc_register_component
@ 2015-08-28 2:48 Axel Lin
2015-08-28 2:49 ` [PATCH 2/3] ASoC: pxa2xx-i2s: " Axel Lin
` (3 more replies)
0 siblings, 4 replies; 8+ messages in thread
From: Axel Lin @ 2015-08-28 2:48 UTC (permalink / raw)
To: Mark Brown; +Cc: alsa-devel, Robert Jarzmik, Liam Girdwood, Haojian Zhuang
Signed-off-by: Axel Lin <axel.lin@ingics.com>
---
sound/soc/pxa/pxa-ssp.c | 11 ++---------
1 file changed, 2 insertions(+), 9 deletions(-)
diff --git a/sound/soc/pxa/pxa-ssp.c b/sound/soc/pxa/pxa-ssp.c
index fbe2e93..3da485e 100644
--- a/sound/soc/pxa/pxa-ssp.c
+++ b/sound/soc/pxa/pxa-ssp.c
@@ -813,14 +813,8 @@ static const struct of_device_id pxa_ssp_of_ids[] = {
static int asoc_ssp_probe(struct platform_device *pdev)
{
- return snd_soc_register_component(&pdev->dev, &pxa_ssp_component,
- &pxa_ssp_dai, 1);
-}
-
-static int asoc_ssp_remove(struct platform_device *pdev)
-{
- snd_soc_unregister_component(&pdev->dev);
- return 0;
+ return devm_snd_soc_register_component(&pdev->dev, &pxa_ssp_component,
+ &pxa_ssp_dai, 1);
}
static struct platform_driver asoc_ssp_driver = {
@@ -830,7 +824,6 @@ static struct platform_driver asoc_ssp_driver = {
},
.probe = asoc_ssp_probe,
- .remove = asoc_ssp_remove,
};
module_platform_driver(asoc_ssp_driver);
--
2.1.0
^ permalink raw reply related [flat|nested] 8+ messages in thread
* [PATCH 2/3] ASoC: pxa2xx-i2s: Convert to devm_snd_soc_register_component
2015-08-28 2:48 [PATCH 1/3] ASoC: pxa-ssp: Convert to devm_snd_soc_register_component Axel Lin
@ 2015-08-28 2:49 ` Axel Lin
2015-08-28 17:45 ` Applied "ASoC: pxa2xx-i2s: Convert to devm_snd_soc_register_component" to the asoc tree Mark Brown
2015-08-28 2:50 ` [PATCH 3/3] ASoC: sh: ssi: Convert to devm_snd_soc_register_component Axel Lin
` (2 subsequent siblings)
3 siblings, 1 reply; 8+ messages in thread
From: Axel Lin @ 2015-08-28 2:49 UTC (permalink / raw)
To: Mark Brown; +Cc: alsa-devel, Robert Jarzmik, Liam Girdwood, Haojian Zhuang
Signed-off-by: Axel Lin <axel.lin@ingics.com>
---
sound/soc/pxa/pxa2xx-i2s.c | 11 ++---------
1 file changed, 2 insertions(+), 9 deletions(-)
diff --git a/sound/soc/pxa/pxa2xx-i2s.c b/sound/soc/pxa/pxa2xx-i2s.c
index e68290c..6b4e400 100644
--- a/sound/soc/pxa/pxa2xx-i2s.c
+++ b/sound/soc/pxa/pxa2xx-i2s.c
@@ -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",
--
2.1.0
^ permalink raw reply related [flat|nested] 8+ messages in thread
* [PATCH 3/3] ASoC: sh: ssi: Convert to devm_snd_soc_register_component
2015-08-28 2:48 [PATCH 1/3] ASoC: pxa-ssp: Convert to devm_snd_soc_register_component Axel Lin
2015-08-28 2:49 ` [PATCH 2/3] ASoC: pxa2xx-i2s: " Axel Lin
@ 2015-08-28 2:50 ` Axel Lin
2015-08-28 17:45 ` Applied "ASoC: sh: ssi: Convert to devm_snd_soc_register_component" to the asoc tree Mark Brown
2015-08-30 6:24 ` [PATCH 3/3] ASoC: sh: ssi: Convert to devm_snd_soc_register_component Manuel Lauss
2015-08-28 8:42 ` [PATCH 1/3] ASoC: pxa-ssp: " Robert Jarzmik
2015-08-28 17:45 ` Applied "ASoC: pxa-ssp: Convert to devm_snd_soc_register_component" to the asoc tree Mark Brown
3 siblings, 2 replies; 8+ messages in thread
From: Axel Lin @ 2015-08-28 2:50 UTC (permalink / raw)
To: Mark Brown; +Cc: Manuel Lauss, alsa-devel, Liam Girdwood, Kuninori Morimoto
Signed-off-by: Axel Lin <axel.lin@ingics.com>
---
sound/soc/sh/ssi.c | 12 +++---------
1 file changed, 3 insertions(+), 9 deletions(-)
diff --git a/sound/soc/sh/ssi.c b/sound/soc/sh/ssi.c
index ab13146..89ed1b1 100644
--- a/sound/soc/sh/ssi.c
+++ b/sound/soc/sh/ssi.c
@@ -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);
--
2.1.0
^ permalink raw reply related [flat|nested] 8+ messages in thread
* Re: [PATCH 1/3] ASoC: pxa-ssp: Convert to devm_snd_soc_register_component
2015-08-28 2:48 [PATCH 1/3] ASoC: pxa-ssp: Convert to devm_snd_soc_register_component Axel Lin
2015-08-28 2:49 ` [PATCH 2/3] ASoC: pxa2xx-i2s: " Axel Lin
2015-08-28 2:50 ` [PATCH 3/3] ASoC: sh: ssi: Convert to devm_snd_soc_register_component Axel Lin
@ 2015-08-28 8:42 ` Robert Jarzmik
2015-08-28 17:45 ` Applied "ASoC: pxa-ssp: Convert to devm_snd_soc_register_component" to the asoc tree Mark Brown
3 siblings, 0 replies; 8+ messages in thread
From: Robert Jarzmik @ 2015-08-28 8:42 UTC (permalink / raw)
To: Axel Lin; +Cc: alsa-devel, Mark Brown, Liam Girdwood, Haojian Zhuang
Axel Lin <axel.lin@ingics.com> writes:
> Signed-off-by: Axel Lin <axel.lin@ingics.com>
Both patches look fine by me, except that the commit messages are empty, which
is a bit a pity for me. That would for example tell me if this was tested on any
platform, even if the patch looks trivial.
Cheers.
--
Robert
^ permalink raw reply [flat|nested] 8+ messages in thread
* Applied "ASoC: sh: ssi: Convert to devm_snd_soc_register_component" to the asoc tree
2015-08-28 2:50 ` [PATCH 3/3] ASoC: sh: ssi: Convert to devm_snd_soc_register_component Axel Lin
@ 2015-08-28 17:45 ` Mark Brown
2015-08-30 6:24 ` [PATCH 3/3] ASoC: sh: ssi: Convert to devm_snd_soc_register_component Manuel Lauss
1 sibling, 0 replies; 8+ messages in thread
From: Mark Brown @ 2015-08-28 17:45 UTC (permalink / raw)
To: Axel Lin, Mark Brown; +Cc: alsa-devel
The patch
ASoC: sh: ssi: Convert to devm_snd_soc_register_component
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 92eca20bbeaa4ec1908bad8aeefcaa2d98e302ff Mon Sep 17 00:00:00 2001
From: Axel Lin <axel.lin@ingics.com>
Date: Fri, 28 Aug 2015 10:50:53 +0800
Subject: [PATCH] ASoC: sh: ssi: Convert to devm_snd_soc_register_component
Signed-off-by: Axel Lin <axel.lin@ingics.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
---
sound/soc/sh/ssi.c | 12 +++---------
1 file changed, 3 insertions(+), 9 deletions(-)
diff --git a/sound/soc/sh/ssi.c b/sound/soc/sh/ssi.c
index ab13146..89ed1b1 100644
--- a/sound/soc/sh/ssi.c
+++ b/sound/soc/sh/ssi.c
@@ -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);
--
2.5.0
^ permalink raw reply related [flat|nested] 8+ messages in thread
* Applied "ASoC: pxa2xx-i2s: Convert to devm_snd_soc_register_component" to the asoc tree
2015-08-28 2:49 ` [PATCH 2/3] ASoC: pxa2xx-i2s: " Axel Lin
@ 2015-08-28 17:45 ` Mark Brown
0 siblings, 0 replies; 8+ messages in thread
From: Mark Brown @ 2015-08-28 17:45 UTC (permalink / raw)
To: Axel Lin, Mark Brown; +Cc: alsa-devel
The patch
ASoC: pxa2xx-i2s: Convert to devm_snd_soc_register_component
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 2cf32b7b338086e9b85bb9fdd8aa398e89d83e9e Mon Sep 17 00:00:00 2001
From: Axel Lin <axel.lin@ingics.com>
Date: Fri, 28 Aug 2015 10:49:44 +0800
Subject: [PATCH] ASoC: pxa2xx-i2s: Convert to devm_snd_soc_register_component
Signed-off-by: Axel Lin <axel.lin@ingics.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
---
sound/soc/pxa/pxa2xx-i2s.c | 11 ++---------
1 file changed, 2 insertions(+), 9 deletions(-)
diff --git a/sound/soc/pxa/pxa2xx-i2s.c b/sound/soc/pxa/pxa2xx-i2s.c
index e68290c..6b4e400 100644
--- a/sound/soc/pxa/pxa2xx-i2s.c
+++ b/sound/soc/pxa/pxa2xx-i2s.c
@@ -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",
--
2.5.0
^ permalink raw reply related [flat|nested] 8+ messages in thread
* Applied "ASoC: pxa-ssp: Convert to devm_snd_soc_register_component" to the asoc tree
2015-08-28 2:48 [PATCH 1/3] ASoC: pxa-ssp: Convert to devm_snd_soc_register_component Axel Lin
` (2 preceding siblings ...)
2015-08-28 8:42 ` [PATCH 1/3] ASoC: pxa-ssp: " Robert Jarzmik
@ 2015-08-28 17:45 ` Mark Brown
3 siblings, 0 replies; 8+ messages in thread
From: Mark Brown @ 2015-08-28 17:45 UTC (permalink / raw)
To: Axel Lin, Mark Brown; +Cc: alsa-devel
The patch
ASoC: pxa-ssp: Convert to devm_snd_soc_register_component
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 637ce53a1b1c489ff0e92aa00b8376464f697dc5 Mon Sep 17 00:00:00 2001
From: Axel Lin <axel.lin@ingics.com>
Date: Fri, 28 Aug 2015 10:48:35 +0800
Subject: [PATCH] ASoC: pxa-ssp: Convert to devm_snd_soc_register_component
Signed-off-by: Axel Lin <axel.lin@ingics.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
---
sound/soc/pxa/pxa-ssp.c | 11 ++---------
1 file changed, 2 insertions(+), 9 deletions(-)
diff --git a/sound/soc/pxa/pxa-ssp.c b/sound/soc/pxa/pxa-ssp.c
index fbe2e93..3da485e 100644
--- a/sound/soc/pxa/pxa-ssp.c
+++ b/sound/soc/pxa/pxa-ssp.c
@@ -813,14 +813,8 @@ static const struct of_device_id pxa_ssp_of_ids[] = {
static int asoc_ssp_probe(struct platform_device *pdev)
{
- return snd_soc_register_component(&pdev->dev, &pxa_ssp_component,
- &pxa_ssp_dai, 1);
-}
-
-static int asoc_ssp_remove(struct platform_device *pdev)
-{
- snd_soc_unregister_component(&pdev->dev);
- return 0;
+ return devm_snd_soc_register_component(&pdev->dev, &pxa_ssp_component,
+ &pxa_ssp_dai, 1);
}
static struct platform_driver asoc_ssp_driver = {
@@ -830,7 +824,6 @@ static struct platform_driver asoc_ssp_driver = {
},
.probe = asoc_ssp_probe,
- .remove = asoc_ssp_remove,
};
module_platform_driver(asoc_ssp_driver);
--
2.5.0
^ permalink raw reply related [flat|nested] 8+ messages in thread
* Re: [PATCH 3/3] ASoC: sh: ssi: Convert to devm_snd_soc_register_component
2015-08-28 2:50 ` [PATCH 3/3] ASoC: sh: ssi: Convert to devm_snd_soc_register_component Axel Lin
2015-08-28 17:45 ` Applied "ASoC: sh: ssi: Convert to devm_snd_soc_register_component" to the asoc tree Mark Brown
@ 2015-08-30 6:24 ` Manuel Lauss
1 sibling, 0 replies; 8+ messages in thread
From: Manuel Lauss @ 2015-08-30 6:24 UTC (permalink / raw)
To: Axel Lin; +Cc: alsa-devel, Mark Brown, Liam Girdwood, Kuninori Morimoto
On Fri, Aug 28, 2015 at 4:50 AM, Axel Lin <axel.lin@ingics.com> wrote:
> Signed-off-by: Axel Lin <axel.lin@ingics.com>
> ---
> sound/soc/sh/ssi.c | 12 +++---------
> 1 file changed, 3 insertions(+), 9 deletions(-)
Acked-by: Manuel Lauss <manuel.lauss@gmail.com>
^ permalink raw reply [flat|nested] 8+ messages in thread
end of thread, other threads:[~2015-08-30 6:25 UTC | newest]
Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-08-28 2:48 [PATCH 1/3] ASoC: pxa-ssp: Convert to devm_snd_soc_register_component Axel Lin
2015-08-28 2:49 ` [PATCH 2/3] ASoC: pxa2xx-i2s: " Axel Lin
2015-08-28 17:45 ` Applied "ASoC: pxa2xx-i2s: Convert to devm_snd_soc_register_component" to the asoc tree Mark Brown
2015-08-28 2:50 ` [PATCH 3/3] ASoC: sh: ssi: Convert to devm_snd_soc_register_component Axel Lin
2015-08-28 17:45 ` Applied "ASoC: sh: ssi: Convert to devm_snd_soc_register_component" to the asoc tree Mark Brown
2015-08-30 6:24 ` [PATCH 3/3] ASoC: sh: ssi: Convert to devm_snd_soc_register_component Manuel Lauss
2015-08-28 8:42 ` [PATCH 1/3] ASoC: pxa-ssp: " Robert Jarzmik
2015-08-28 17:45 ` Applied "ASoC: pxa-ssp: Convert to devm_snd_soc_register_component" 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.