alsa-devel.alsa-project.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] ASoC: soc_pcm_open: Add missing bailout tag
@ 2010-02-25  2:24 jassisinghbrar
  2010-02-25  9:50 ` Liam Girdwood
  2010-02-25 13:38 ` Mark Brown
  0 siblings, 2 replies; 3+ messages in thread
From: jassisinghbrar @ 2010-02-25  2:24 UTC (permalink / raw)
  To: alsa-devel; +Cc: broonie, Jassi Brar, lrg

From: Jassi Brar <jassi.brar@samsung.com>

The codec_dai needs to be shutdown should the machine startup fails.
This patch adds another bailout tag for that case and rename the tag
for configuration failures.

Signed-off-by: Jassi Brar <jassi.brar@samsung.com>
---
 sound/soc/soc-core.c |   14 +++++++++-----
 1 files changed, 9 insertions(+), 5 deletions(-)

diff --git a/sound/soc/soc-core.c b/sound/soc/soc-core.c
index a03bac9..c81eb59 100644
--- a/sound/soc/soc-core.c
+++ b/sound/soc/soc-core.c
@@ -427,24 +427,24 @@ static int soc_pcm_open(struct snd_pcm_substream *substream)
 	if (!runtime->hw.rates) {
 		printk(KERN_ERR "asoc: %s <-> %s No matching rates\n",
 			codec_dai->name, cpu_dai->name);
-		goto machine_err;
+		goto config_err;
 	}
 	if (!runtime->hw.formats) {
 		printk(KERN_ERR "asoc: %s <-> %s No matching formats\n",
 			codec_dai->name, cpu_dai->name);
-		goto machine_err;
+		goto config_err;
 	}
 	if (!runtime->hw.channels_min || !runtime->hw.channels_max) {
 		printk(KERN_ERR "asoc: %s <-> %s No matching channels\n",
 			codec_dai->name, cpu_dai->name);
-		goto machine_err;
+		goto config_err;
 	}
 
 	/* Symmetry only applies if we've already got an active stream. */
 	if (cpu_dai->active || codec_dai->active) {
 		ret = soc_pcm_apply_symmetry(substream);
 		if (ret != 0)
-			goto machine_err;
+			goto config_err;
 	}
 
 	pr_debug("asoc: %s <-> %s info:\n", codec_dai->name, cpu_dai->name);
@@ -464,10 +464,14 @@ static int soc_pcm_open(struct snd_pcm_substream *substream)
 	mutex_unlock(&pcm_mutex);
 	return 0;
 
-machine_err:
+config_err:
 	if (machine->ops && machine->ops->shutdown)
 		machine->ops->shutdown(substream);
 
+machine_err:
+	if (codec_dai->ops->shutdown)
+		codec_dai->ops->shutdown(substream, codec_dai);
+
 codec_dai_err:
 	if (platform->pcm_ops->close)
 		platform->pcm_ops->close(substream);
-- 
1.6.2.5

^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [PATCH] ASoC: soc_pcm_open: Add missing bailout tag
  2010-02-25  2:24 [PATCH] ASoC: soc_pcm_open: Add missing bailout tag jassisinghbrar
@ 2010-02-25  9:50 ` Liam Girdwood
  2010-02-25 13:38 ` Mark Brown
  1 sibling, 0 replies; 3+ messages in thread
From: Liam Girdwood @ 2010-02-25  9:50 UTC (permalink / raw)
  To: jassisinghbrar; +Cc: alsa-devel, broonie, Jassi Brar

On Thu, 2010-02-25 at 11:24 +0900, jassisinghbrar@gmail.com wrote:
> From: Jassi Brar <jassi.brar@samsung.com>
> 
> The codec_dai needs to be shutdown should the machine startup fails.
> This patch adds another bailout tag for that case and rename the tag
> for configuration failures.
> 
> Signed-off-by: Jassi Brar <jassi.brar@samsung.com>
> ---

Acked-by: Liam Girdwood <lrg@slimlogic.co.uk>

-- 
Freelance Developer, SlimLogic Ltd
ASoC and Voltage Regulator Maintainer.
http://www.slimlogic.co.uk

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH] ASoC: soc_pcm_open: Add missing bailout tag
  2010-02-25  2:24 [PATCH] ASoC: soc_pcm_open: Add missing bailout tag jassisinghbrar
  2010-02-25  9:50 ` Liam Girdwood
@ 2010-02-25 13:38 ` Mark Brown
  1 sibling, 0 replies; 3+ messages in thread
From: Mark Brown @ 2010-02-25 13:38 UTC (permalink / raw)
  To: jassisinghbrar; +Cc: alsa-devel, Jassi Brar, lrg

On Thu, Feb 25, 2010 at 11:24:53AM +0900, jassisinghbrar@gmail.com wrote:
> From: Jassi Brar <jassi.brar@samsung.com>

> The codec_dai needs to be shutdown should the machine startup fails.
> This patch adds another bailout tag for that case and rename the tag
> for configuration failures.

> Signed-off-by: Jassi Brar <jassi.brar@samsung.com>

Good spot - applied, thanks.

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2010-02-25 13:38 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-02-25  2:24 [PATCH] ASoC: soc_pcm_open: Add missing bailout tag jassisinghbrar
2010-02-25  9:50 ` Liam Girdwood
2010-02-25 13:38 ` Mark Brown

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).