* [PATCH 0/4] ASoC: tidyup return method from probe()
@ 2017-05-19 0:54 Kuninori Morimoto
2017-05-19 0:57 ` [PATCH 1/4] ASoC: simple-card: " Kuninori Morimoto
` (4 more replies)
0 siblings, 5 replies; 10+ messages in thread
From: Kuninori Morimoto @ 2017-05-19 0:54 UTC (permalink / raw)
To: Mark Brown, Dan Carpenter; +Cc: Simon, Linux-Renesas, Linux-ALSA
Hi Mark
As Dan reported, current
simple / simple-scu / audio-graph / audio-grach-scu(it is now posting)
are using strange return method on probe()
These patches fix these up.
Kuninori Morimoto (4):
ASoC: simple-card: tidyup return method from probe()
ASoC: simple-scu-card: tidyup return method from probe()
ASoC: audio-graph-card: tidyup return method from probe()
ASoC: audio-graph-scu-card: tidyup return method from probe()
sound/soc/generic/audio-graph-card.c | 6 ++++--
sound/soc/generic/audio-graph-scu-card.c | 6 ++++--
sound/soc/generic/simple-card.c | 6 ++++--
sound/soc/generic/simple-scu-card.c | 6 ++++--
4 files changed, 16 insertions(+), 8 deletions(-)
--
1.9.1
^ permalink raw reply [flat|nested] 10+ messages in thread
* [PATCH 1/4] ASoC: simple-card: tidyup return method from probe()
2017-05-19 0:54 [PATCH 0/4] ASoC: tidyup return method from probe() Kuninori Morimoto
@ 2017-05-19 0:57 ` Kuninori Morimoto
2017-05-19 17:04 ` Applied "ASoC: simple-card: tidyup return method from probe()" to the asoc tree Mark Brown
2017-05-19 0:57 ` [PATCH 2/4] ASoC: simple-scu-card: tidyup return method from probe() Kuninori Morimoto
` (3 subsequent siblings)
4 siblings, 1 reply; 10+ messages in thread
From: Kuninori Morimoto @ 2017-05-19 0:57 UTC (permalink / raw)
To: Mark Brown, Dan Carpenter; +Cc: Linux-Renesas, Linux-ALSA, Simon
From: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
Current return method from probe() is very confusable.
This patch tidyup it to normal return method
Reported-by: Dan Carpenter <dan.carpenter@oracle.com>
Signed-off-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
---
sound/soc/generic/simple-card.c | 6 ++++--
1 file changed, 4 insertions(+), 2 deletions(-)
diff --git a/sound/soc/generic/simple-card.c b/sound/soc/generic/simple-card.c
index 4b7b135..6bcaaf9 100644
--- a/sound/soc/generic/simple-card.c
+++ b/sound/soc/generic/simple-card.c
@@ -474,8 +474,10 @@ static int asoc_simple_card_probe(struct platform_device *pdev)
snd_soc_card_set_drvdata(card, priv);
ret = devm_snd_soc_register_card(dev, card);
- if (ret >= 0)
- return ret;
+ if (ret < 0)
+ goto err;
+
+ return 0;
err:
asoc_simple_card_clean_reference(card);
--
1.9.1
^ permalink raw reply related [flat|nested] 10+ messages in thread
* [PATCH 2/4] ASoC: simple-scu-card: tidyup return method from probe()
2017-05-19 0:54 [PATCH 0/4] ASoC: tidyup return method from probe() Kuninori Morimoto
2017-05-19 0:57 ` [PATCH 1/4] ASoC: simple-card: " Kuninori Morimoto
@ 2017-05-19 0:57 ` Kuninori Morimoto
2017-05-19 17:04 ` Applied "ASoC: simple-scu-card: tidyup return method from probe()" to the asoc tree Mark Brown
2017-05-19 0:58 ` [PATCH 3/4] ASoC: audio-graph-card: tidyup return method from probe() Kuninori Morimoto
` (2 subsequent siblings)
4 siblings, 1 reply; 10+ messages in thread
From: Kuninori Morimoto @ 2017-05-19 0:57 UTC (permalink / raw)
To: Mark Brown, Dan Carpenter; +Cc: Simon, Linux-Renesas, Linux-ALSA
From: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
Current return method from probe() is very confusable.
This patch tidyup it to normal return method
Reported-by: Dan Carpenter <dan.carpenter@oracle.com>
Signed-off-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
---
sound/soc/generic/simple-scu-card.c | 6 ++++--
1 file changed, 4 insertions(+), 2 deletions(-)
diff --git a/sound/soc/generic/simple-scu-card.c b/sound/soc/generic/simple-scu-card.c
index 1e8c42d..a75b385 100644
--- a/sound/soc/generic/simple-scu-card.c
+++ b/sound/soc/generic/simple-scu-card.c
@@ -269,8 +269,10 @@ static int asoc_simple_card_probe(struct platform_device *pdev)
snd_soc_card_set_drvdata(card, priv);
ret = devm_snd_soc_register_card(dev, card);
- if (ret >= 0)
- return ret;
+ if (ret < 0)
+ goto err;
+
+ return 0;
err:
asoc_simple_card_clean_reference(card);
--
1.9.1
^ permalink raw reply related [flat|nested] 10+ messages in thread
* [PATCH 3/4] ASoC: audio-graph-card: tidyup return method from probe()
2017-05-19 0:54 [PATCH 0/4] ASoC: tidyup return method from probe() Kuninori Morimoto
2017-05-19 0:57 ` [PATCH 1/4] ASoC: simple-card: " Kuninori Morimoto
2017-05-19 0:57 ` [PATCH 2/4] ASoC: simple-scu-card: tidyup return method from probe() Kuninori Morimoto
@ 2017-05-19 0:58 ` Kuninori Morimoto
2017-05-19 17:04 ` Applied "ASoC: audio-graph-card: tidyup return method from probe()" to the asoc tree Mark Brown
2017-05-19 0:58 ` [PATCH 4/4] ASoC: audio-graph-scu-card: tidyup return method from probe() Kuninori Morimoto
2017-05-19 6:10 ` [PATCH 0/4] ASoC: tidyup return method from probe() Dan Carpenter
4 siblings, 1 reply; 10+ messages in thread
From: Kuninori Morimoto @ 2017-05-19 0:58 UTC (permalink / raw)
To: Mark Brown, Dan Carpenter; +Cc: Simon, Linux-Renesas, Linux-ALSA
From: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
Current return method from probe() is very confusable.
This patch tidyup it to normal return method
Reported-by: Dan Carpenter <dan.carpenter@oracle.com>
Signed-off-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
---
sound/soc/generic/audio-graph-card.c | 6 ++++--
1 file changed, 4 insertions(+), 2 deletions(-)
diff --git a/sound/soc/generic/audio-graph-card.c b/sound/soc/generic/audio-graph-card.c
index fd958f7d..8435687 100644
--- a/sound/soc/generic/audio-graph-card.c
+++ b/sound/soc/generic/audio-graph-card.c
@@ -254,8 +254,10 @@ static int asoc_graph_card_probe(struct platform_device *pdev)
snd_soc_card_set_drvdata(card, priv);
ret = devm_snd_soc_register_card(dev, card);
- if (ret >= 0)
- return ret;
+ if (ret < 0)
+ goto err;
+
+ return 0;
err:
asoc_simple_card_clean_reference(card);
--
1.9.1
^ permalink raw reply related [flat|nested] 10+ messages in thread
* [PATCH 4/4] ASoC: audio-graph-scu-card: tidyup return method from probe()
2017-05-19 0:54 [PATCH 0/4] ASoC: tidyup return method from probe() Kuninori Morimoto
` (2 preceding siblings ...)
2017-05-19 0:58 ` [PATCH 3/4] ASoC: audio-graph-card: tidyup return method from probe() Kuninori Morimoto
@ 2017-05-19 0:58 ` Kuninori Morimoto
2017-05-29 14:02 ` Applied "ASoC: audio-graph-scu-card: tidyup return method from probe()" to the asoc tree Mark Brown
2017-05-19 6:10 ` [PATCH 0/4] ASoC: tidyup return method from probe() Dan Carpenter
4 siblings, 1 reply; 10+ messages in thread
From: Kuninori Morimoto @ 2017-05-19 0:58 UTC (permalink / raw)
To: Mark Brown, Dan Carpenter; +Cc: Simon, Linux-Renesas, Linux-ALSA
From: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
Current return method from probe() is very confusable.
This patch tidyup it to normal return method
Reported-by: Dan Carpenter <dan.carpenter@oracle.com>
Signed-off-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
---
sound/soc/generic/audio-graph-scu-card.c | 6 ++++--
1 file changed, 4 insertions(+), 2 deletions(-)
diff --git a/sound/soc/generic/audio-graph-scu-card.c b/sound/soc/generic/audio-graph-scu-card.c
index 8465ce6..05934b2 100644
--- a/sound/soc/generic/audio-graph-scu-card.c
+++ b/sound/soc/generic/audio-graph-scu-card.c
@@ -350,8 +350,10 @@ static int asoc_graph_card_probe(struct platform_device *pdev)
snd_soc_card_set_drvdata(card, priv);
ret = devm_snd_soc_register_card(dev, card);
- if (ret >= 0)
- return ret;
+ if (ret < 0)
+ goto err;
+
+ return 0;
err:
asoc_simple_card_clean_reference(card);
--
1.9.1
^ permalink raw reply related [flat|nested] 10+ messages in thread
* Re: [PATCH 0/4] ASoC: tidyup return method from probe()
2017-05-19 0:54 [PATCH 0/4] ASoC: tidyup return method from probe() Kuninori Morimoto
` (3 preceding siblings ...)
2017-05-19 0:58 ` [PATCH 4/4] ASoC: audio-graph-scu-card: tidyup return method from probe() Kuninori Morimoto
@ 2017-05-19 6:10 ` Dan Carpenter
4 siblings, 0 replies; 10+ messages in thread
From: Dan Carpenter @ 2017-05-19 6:10 UTC (permalink / raw)
To: Kuninori Morimoto; +Cc: Linux-Renesas, Linux-ALSA, Mark Brown, Simon
Thanks!
regards,
dan carpenter
^ permalink raw reply [flat|nested] 10+ messages in thread
* Applied "ASoC: audio-graph-card: tidyup return method from probe()" to the asoc tree
2017-05-19 0:58 ` [PATCH 3/4] ASoC: audio-graph-card: tidyup return method from probe() Kuninori Morimoto
@ 2017-05-19 17:04 ` Mark Brown
0 siblings, 0 replies; 10+ messages in thread
From: Mark Brown @ 2017-05-19 17:04 UTC (permalink / raw)
To: Kuninori Morimoto; +Cc: Dan Carpenter, Mark Brown
The patch
ASoC: audio-graph-card: tidyup return method from probe()
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 ecea931350cedae8ee24abe6a65619f46a3a9c14 Mon Sep 17 00:00:00 2001
From: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
Date: Fri, 19 May 2017 00:58:00 +0000
Subject: [PATCH] ASoC: audio-graph-card: tidyup return method from probe()
Current return method from probe() is very confusable.
This patch tidyup it to normal return method
Reported-by: Dan Carpenter <dan.carpenter@oracle.com>
Signed-off-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
---
sound/soc/generic/audio-graph-card.c | 6 ++++--
1 file changed, 4 insertions(+), 2 deletions(-)
diff --git a/sound/soc/generic/audio-graph-card.c b/sound/soc/generic/audio-graph-card.c
index 07e010d38596..f41b0393ffca 100644
--- a/sound/soc/generic/audio-graph-card.c
+++ b/sound/soc/generic/audio-graph-card.c
@@ -271,8 +271,10 @@ static int asoc_graph_card_probe(struct platform_device *pdev)
snd_soc_card_set_drvdata(card, priv);
ret = devm_snd_soc_register_card(dev, card);
- if (ret >= 0)
- return ret;
+ if (ret < 0)
+ goto err;
+
+ return 0;
err:
asoc_simple_card_clean_reference(card);
--
2.11.0
^ permalink raw reply related [flat|nested] 10+ messages in thread
* Applied "ASoC: simple-scu-card: tidyup return method from probe()" to the asoc tree
2017-05-19 0:57 ` [PATCH 2/4] ASoC: simple-scu-card: tidyup return method from probe() Kuninori Morimoto
@ 2017-05-19 17:04 ` Mark Brown
0 siblings, 0 replies; 10+ messages in thread
From: Mark Brown @ 2017-05-19 17:04 UTC (permalink / raw)
To: Kuninori Morimoto; +Cc: Dan Carpenter, Mark Brown
The patch
ASoC: simple-scu-card: tidyup return method from probe()
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 c73df77d72de28ad72973d3c3103a5361e1440fb Mon Sep 17 00:00:00 2001
From: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
Date: Fri, 19 May 2017 00:57:44 +0000
Subject: [PATCH] ASoC: simple-scu-card: tidyup return method from probe()
Current return method from probe() is very confusable.
This patch tidyup it to normal return method
Reported-by: Dan Carpenter <dan.carpenter@oracle.com>
Signed-off-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
---
sound/soc/generic/simple-scu-card.c | 6 ++++--
1 file changed, 4 insertions(+), 2 deletions(-)
diff --git a/sound/soc/generic/simple-scu-card.c b/sound/soc/generic/simple-scu-card.c
index dcbcab230d1b..9b9b01e12149 100644
--- a/sound/soc/generic/simple-scu-card.c
+++ b/sound/soc/generic/simple-scu-card.c
@@ -298,8 +298,10 @@ static int asoc_simple_card_probe(struct platform_device *pdev)
snd_soc_card_set_drvdata(card, priv);
ret = devm_snd_soc_register_card(dev, card);
- if (ret >= 0)
- return ret;
+ if (ret < 0)
+ goto err;
+
+ return 0;
err:
asoc_simple_card_clean_reference(card);
--
2.11.0
^ permalink raw reply related [flat|nested] 10+ messages in thread
* Applied "ASoC: simple-card: tidyup return method from probe()" to the asoc tree
2017-05-19 0:57 ` [PATCH 1/4] ASoC: simple-card: " Kuninori Morimoto
@ 2017-05-19 17:04 ` Mark Brown
0 siblings, 0 replies; 10+ messages in thread
From: Mark Brown @ 2017-05-19 17:04 UTC (permalink / raw)
To: Kuninori Morimoto; +Cc: Dan Carpenter, Mark Brown
The patch
ASoC: simple-card: tidyup return method from probe()
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 c6d112e442fed7b471a7a2fcedea529622f9ec3a Mon Sep 17 00:00:00 2001
From: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
Date: Fri, 19 May 2017 00:57:21 +0000
Subject: [PATCH] ASoC: simple-card: tidyup return method from probe()
Current return method from probe() is very confusable.
This patch tidyup it to normal return method
Reported-by: Dan Carpenter <dan.carpenter@oracle.com>
Signed-off-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
---
sound/soc/generic/simple-card.c | 6 ++++--
1 file changed, 4 insertions(+), 2 deletions(-)
diff --git a/sound/soc/generic/simple-card.c b/sound/soc/generic/simple-card.c
index 2c9dedab5184..4dacaf78a0de 100644
--- a/sound/soc/generic/simple-card.c
+++ b/sound/soc/generic/simple-card.c
@@ -497,8 +497,10 @@ static int asoc_simple_card_probe(struct platform_device *pdev)
snd_soc_card_set_drvdata(card, priv);
ret = devm_snd_soc_register_card(dev, card);
- if (ret >= 0)
- return ret;
+ if (ret < 0)
+ goto err;
+
+ return 0;
err:
asoc_simple_card_clean_reference(card);
--
2.11.0
^ permalink raw reply related [flat|nested] 10+ messages in thread
* Applied "ASoC: audio-graph-scu-card: tidyup return method from probe()" to the asoc tree
2017-05-19 0:58 ` [PATCH 4/4] ASoC: audio-graph-scu-card: tidyup return method from probe() Kuninori Morimoto
@ 2017-05-29 14:02 ` Mark Brown
0 siblings, 0 replies; 10+ messages in thread
From: Mark Brown @ 2017-05-29 14:02 UTC (permalink / raw)
To: Kuninori Morimoto; +Cc: Dan Carpenter, Mark Brown
The patch
ASoC: audio-graph-scu-card: tidyup return method from probe()
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 1a2af56431781e7d6db746a1b7ae796443028dfa Mon Sep 17 00:00:00 2001
From: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
Date: Fri, 19 May 2017 00:58:19 +0000
Subject: [PATCH] ASoC: audio-graph-scu-card: tidyup return method from probe()
Current return method from probe() is very confusable.
This patch tidyup it to normal return method
Reported-by: Dan Carpenter <dan.carpenter@oracle.com>
Signed-off-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
---
sound/soc/generic/audio-graph-scu-card.c | 6 ++++--
1 file changed, 4 insertions(+), 2 deletions(-)
diff --git a/sound/soc/generic/audio-graph-scu-card.c b/sound/soc/generic/audio-graph-scu-card.c
index 64e8b9728580..c5c52d1f500c 100644
--- a/sound/soc/generic/audio-graph-scu-card.c
+++ b/sound/soc/generic/audio-graph-scu-card.c
@@ -379,8 +379,10 @@ static int asoc_graph_card_probe(struct platform_device *pdev)
snd_soc_card_set_drvdata(card, priv);
ret = devm_snd_soc_register_card(dev, card);
- if (ret >= 0)
- return ret;
+ if (ret < 0)
+ goto err;
+
+ return 0;
err:
asoc_simple_card_clean_reference(card);
--
2.11.0
^ permalink raw reply related [flat|nested] 10+ messages in thread
end of thread, other threads:[~2017-05-29 14:02 UTC | newest]
Thread overview: 10+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-05-19 0:54 [PATCH 0/4] ASoC: tidyup return method from probe() Kuninori Morimoto
2017-05-19 0:57 ` [PATCH 1/4] ASoC: simple-card: " Kuninori Morimoto
2017-05-19 17:04 ` Applied "ASoC: simple-card: tidyup return method from probe()" to the asoc tree Mark Brown
2017-05-19 0:57 ` [PATCH 2/4] ASoC: simple-scu-card: tidyup return method from probe() Kuninori Morimoto
2017-05-19 17:04 ` Applied "ASoC: simple-scu-card: tidyup return method from probe()" to the asoc tree Mark Brown
2017-05-19 0:58 ` [PATCH 3/4] ASoC: audio-graph-card: tidyup return method from probe() Kuninori Morimoto
2017-05-19 17:04 ` Applied "ASoC: audio-graph-card: tidyup return method from probe()" to the asoc tree Mark Brown
2017-05-19 0:58 ` [PATCH 4/4] ASoC: audio-graph-scu-card: tidyup return method from probe() Kuninori Morimoto
2017-05-29 14:02 ` Applied "ASoC: audio-graph-scu-card: tidyup return method from probe()" to the asoc tree Mark Brown
2017-05-19 6:10 ` [PATCH 0/4] ASoC: tidyup return method from probe() Dan Carpenter
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).