* [PATCH] ASoC: SAMSUNG: Debug wrong parameter
@ 2010-12-22 9:46 Seungwhan Youn
2010-12-22 10:55 ` Liam Girdwood
2010-12-22 11:14 ` Mark Brown
0 siblings, 2 replies; 4+ messages in thread
From: Seungwhan Youn @ 2010-12-22 9:46 UTC (permalink / raw)
To: alsa-devel; +Cc: Seungwhan Youn, cw00.choi, broonie, jassi.brar, lrg
snd_soc_jack_new()'s first parameter was changed from snd_soc_card to
snd_soc_codec after Multi-Component support patches. So, this patch
fixes parameter that we missed.
Signed-off-by: Seungwhan Youn <sw.youn@samsung.com>
---
This patch-mail is just for sure about mail-delivery, because privious mail
that I sent(with same subject and content) doesn't look deliver to alsa-devel
mailing list. So, if you received same mail before few hours ago, please
ignore this mail.
Thanks,
Claude
sound/soc/samsung/goni_wm8994.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/sound/soc/samsung/goni_wm8994.c b/sound/soc/samsung/goni_wm8994.c
index cc8528c..34dd9ef 100644
--- a/sound/soc/samsung/goni_wm8994.c
+++ b/sound/soc/samsung/goni_wm8994.c
@@ -131,7 +131,7 @@ static int goni_wm8994_init(struct snd_soc_pcm_runtime *rtd)
snd_soc_dapm_sync(dapm);
/* Headset jack detection */
- ret = snd_soc_jack_new(&goni, "Headset Jack",
+ ret = snd_soc_jack_new(codec, "Headset Jack",
SND_JACK_HEADSET | SND_JACK_MECHANICAL | SND_JACK_AVOUT,
&jack);
if (ret)
--
1.6.2.5
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [PATCH] ASoC: SAMSUNG: Debug wrong parameter
2010-12-22 9:46 [PATCH] ASoC: SAMSUNG: Debug wrong parameter Seungwhan Youn
@ 2010-12-22 10:55 ` Liam Girdwood
2010-12-22 11:14 ` Mark Brown
1 sibling, 0 replies; 4+ messages in thread
From: Liam Girdwood @ 2010-12-22 10:55 UTC (permalink / raw)
To: Seungwhan Youn; +Cc: cw00.choi, alsa-devel, broonie, jassi.brar
On Wed, 2010-12-22 at 18:46 +0900, Seungwhan Youn wrote:
> snd_soc_jack_new()'s first parameter was changed from snd_soc_card to
> snd_soc_codec after Multi-Component support patches. So, this patch
> fixes parameter that we missed.
>
> Signed-off-by: Seungwhan Youn <sw.youn@samsung.com>
> ---
> This patch-mail is just for sure about mail-delivery, because privious mail
> that I sent(with same subject and content) doesn't look deliver to alsa-devel
> mailing list. So, if you received same mail before few hours ago, please
> ignore this mail.
>
> Thanks,
> Claude
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] 4+ messages in thread
* Re: [PATCH] ASoC: SAMSUNG: Debug wrong parameter
2010-12-22 9:46 [PATCH] ASoC: SAMSUNG: Debug wrong parameter Seungwhan Youn
2010-12-22 10:55 ` Liam Girdwood
@ 2010-12-22 11:14 ` Mark Brown
1 sibling, 0 replies; 4+ messages in thread
From: Mark Brown @ 2010-12-22 11:14 UTC (permalink / raw)
To: Seungwhan Youn; +Cc: cw00.choi, alsa-devel, jassi.brar, lrg
On Wed, Dec 22, 2010 at 06:46:24PM +0900, Seungwhan Youn wrote:
> snd_soc_jack_new()'s first parameter was changed from snd_soc_card to
> snd_soc_codec after Multi-Component support patches. So, this patch
> fixes parameter that we missed.
>
> Signed-off-by: Seungwhan Youn <sw.youn@samsung.com>
Applied, thanks.
^ permalink raw reply [flat|nested] 4+ messages in thread
* [PATCH] ASoC: SAMSUNG: Debug wrong parameter
@ 2010-12-22 6:29 Seungwhan Youn
0 siblings, 0 replies; 4+ messages in thread
From: Seungwhan Youn @ 2010-12-22 6:29 UTC (permalink / raw)
To: alsa-devel; +Cc: Seungwhan Youn, cw00.choi, broonie, jassi.brar, lrg
snd_soc_jack_new()'s first parameter was changed from snd_soc_card to
snd_soc_codec after Multi-Component support patches. So, this patch
fixes parameter that we missed.
Signed-off-by: Seungwhan Youn <sw.youn@samsung.com>
---
sound/soc/samsung/goni_wm8994.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/sound/soc/samsung/goni_wm8994.c b/sound/soc/samsung/goni_wm8994.c
index cc8528c..34dd9ef 100644
--- a/sound/soc/samsung/goni_wm8994.c
+++ b/sound/soc/samsung/goni_wm8994.c
@@ -131,7 +131,7 @@ static int goni_wm8994_init(struct snd_soc_pcm_runtime *rtd)
snd_soc_dapm_sync(dapm);
/* Headset jack detection */
- ret = snd_soc_jack_new(&goni, "Headset Jack",
+ ret = snd_soc_jack_new(codec, "Headset Jack",
SND_JACK_HEADSET | SND_JACK_MECHANICAL | SND_JACK_AVOUT,
&jack);
if (ret)
--
1.6.2.5
^ permalink raw reply related [flat|nested] 4+ messages in thread
end of thread, other threads:[~2010-12-22 11:14 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-12-22 9:46 [PATCH] ASoC: SAMSUNG: Debug wrong parameter Seungwhan Youn
2010-12-22 10:55 ` Liam Girdwood
2010-12-22 11:14 ` Mark Brown
-- strict thread matches above, loose matches on Subject: below --
2010-12-22 6:29 Seungwhan Youn
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.