All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] spitz: MONO -> MONO1
@ 2008-08-11 22:45 Dmitry Baryshkov
  2008-08-11 22:45 ` [PATCH] wm8750: add missing VREF output Dmitry Baryshkov
  2008-08-12 10:17 ` [PATCH] spitz: MONO -> MONO1 Mark Brown
  0 siblings, 2 replies; 4+ messages in thread
From: Dmitry Baryshkov @ 2008-08-11 22:45 UTC (permalink / raw)
  To: alsa-devel; +Cc: Dmitry Baryshkov, Mark Brown

Correct route name to be MONO1 instead of MONO to follow
recent fix in wm8750.

Signed-off-by: Dmitry Baryshkov <dbaryshkov@gmail.com>
Cc: Mark Brown <broonie@opensource.wolfsonmicro.com>
---
 sound/soc/pxa/spitz.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/sound/soc/pxa/spitz.c b/sound/soc/pxa/spitz.c
index eefc25b..37cb768 100644
--- a/sound/soc/pxa/spitz.c
+++ b/sound/soc/pxa/spitz.c
@@ -297,7 +297,7 @@ static int spitz_wm8750_init(struct snd_soc_codec *codec)
 	snd_soc_dapm_disable_pin(codec, "LINPUT3");
 	snd_soc_dapm_disable_pin(codec, "RINPUT3");
 	snd_soc_dapm_disable_pin(codec, "OUT3");
-	snd_soc_dapm_disable_pin(codec, "MONO");
+	snd_soc_dapm_disable_pin(codec, "MONO1");
 
 	/* Add spitz specific controls */
 	for (i = 0; i < ARRAY_SIZE(wm8750_spitz_controls); i++) {
-- 
1.5.6.3

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

* [PATCH] wm8750: add missing VREF output
  2008-08-11 22:45 [PATCH] spitz: MONO -> MONO1 Dmitry Baryshkov
@ 2008-08-11 22:45 ` Dmitry Baryshkov
  2008-08-12 10:17 ` [PATCH] spitz: MONO -> MONO1 Mark Brown
  1 sibling, 0 replies; 4+ messages in thread
From: Dmitry Baryshkov @ 2008-08-11 22:45 UTC (permalink / raw)
  To: alsa-devel; +Cc: Dmitry Baryshkov, Mark Brown

Add missing output VREF. After a65f0568f6cc8433877fb71dd7d36b551854b0bc
it's critical, since it makes chip routing initialisation to fail.

Signed-off-by: Dmitry Baryshkov <dbaryshkov@gmail.com>
Cc: Mark Brown <broonie@opensource.wolfsonmicro.com>
---
 sound/soc/codecs/wm8750.c |    1 +
 1 files changed, 1 insertions(+), 0 deletions(-)

diff --git a/sound/soc/codecs/wm8750.c b/sound/soc/codecs/wm8750.c
index 2e71394..c6a8edf 100644
--- a/sound/soc/codecs/wm8750.c
+++ b/sound/soc/codecs/wm8750.c
@@ -350,6 +350,7 @@ static const struct snd_soc_dapm_widget wm8750_dapm_widgets[] = {
 	SND_SOC_DAPM_OUTPUT("ROUT2"),
 	SND_SOC_DAPM_OUTPUT("MONO1"),
 	SND_SOC_DAPM_OUTPUT("OUT3"),
+	SND_SOC_DAPM_OUTPUT("VREF"),
 
 	SND_SOC_DAPM_INPUT("LINPUT1"),
 	SND_SOC_DAPM_INPUT("LINPUT2"),
-- 
1.5.6.3

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

* Re: [PATCH] spitz: MONO -> MONO1
  2008-08-11 22:45 [PATCH] spitz: MONO -> MONO1 Dmitry Baryshkov
  2008-08-11 22:45 ` [PATCH] wm8750: add missing VREF output Dmitry Baryshkov
@ 2008-08-12 10:17 ` Mark Brown
  2008-08-12 14:03   ` Takashi Iwai
  1 sibling, 1 reply; 4+ messages in thread
From: Mark Brown @ 2008-08-12 10:17 UTC (permalink / raw)
  To: Dmitry Baryshkov; +Cc: alsa-devel

On Tue, Aug 12, 2008 at 02:45:30AM +0400, Dmitry Baryshkov wrote:
> Correct route name to be MONO1 instead of MONO to follow
> recent fix in wm8750.
> 
> Signed-off-by: Dmitry Baryshkov <dbaryshkov@gmail.com>
> Cc: Mark Brown <broonie@opensource.wolfsonmicro.com>

both are (still):

Acked-by: Mark Brown <broonie@opensource.wolfsonmicro.com>

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

* Re: [PATCH] spitz: MONO -> MONO1
  2008-08-12 10:17 ` [PATCH] spitz: MONO -> MONO1 Mark Brown
@ 2008-08-12 14:03   ` Takashi Iwai
  0 siblings, 0 replies; 4+ messages in thread
From: Takashi Iwai @ 2008-08-12 14:03 UTC (permalink / raw)
  To: Mark Brown; +Cc: Dmitry Baryshkov, alsa-devel

At Tue, 12 Aug 2008 11:17:35 +0100,
Mark Brown wrote:
> 
> On Tue, Aug 12, 2008 at 02:45:30AM +0400, Dmitry Baryshkov wrote:
> > Correct route name to be MONO1 instead of MONO to follow
> > recent fix in wm8750.
> > 
> > Signed-off-by: Dmitry Baryshkov <dbaryshkov@gmail.com>
> > Cc: Mark Brown <broonie@opensource.wolfsonmicro.com>
> 
> both are (still):
> 
> Acked-by: Mark Brown <broonie@opensource.wolfsonmicro.com>

Applied both now.  Thanks.


Takashi

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

end of thread, other threads:[~2008-08-12 14:03 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-08-11 22:45 [PATCH] spitz: MONO -> MONO1 Dmitry Baryshkov
2008-08-11 22:45 ` [PATCH] wm8750: add missing VREF output Dmitry Baryshkov
2008-08-12 10:17 ` [PATCH] spitz: MONO -> MONO1 Mark Brown
2008-08-12 14:03   ` Takashi Iwai

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.