linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] ASoC: simple-card: fix mic jack initialization
@ 2017-05-15 21:00 Stefan Agner
  2017-05-15 23:31 ` Kuninori Morimoto
  2017-05-19 17:03 ` Applied "ASoC: simple-card: fix mic jack initialization" to the asoc tree Mark Brown
  0 siblings, 2 replies; 3+ messages in thread
From: Stefan Agner @ 2017-05-15 21:00 UTC (permalink / raw)
  To: broonie, lgirdwood, perex, tiwai
  Cc: kuninori.morimoto.gx, nikita.yoush, alsa-devel, linux-kernel,
	Stefan Agner

Initialize asoc_simple_card_init_mic with the correct struct
asoc_simple_jack.

Signed-off-by: Stefan Agner <stefan@agner.ch>
Fixes: 9eac361877b3 ("ASoC: simple-card: add new asoc_simple_jack and use it")
---
 sound/soc/generic/simple-card.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sound/soc/generic/simple-card.c b/sound/soc/generic/simple-card.c
index 2c9dedab5184..bc136d2bd7cd 100644
--- a/sound/soc/generic/simple-card.c
+++ b/sound/soc/generic/simple-card.c
@@ -202,7 +202,7 @@ static int asoc_simple_card_dai_init(struct snd_soc_pcm_runtime *rtd)
 	if (ret < 0)
 		return ret;
 
-	ret = asoc_simple_card_init_mic(rtd->card, &priv->hp_jack, PREFIX);
+	ret = asoc_simple_card_init_mic(rtd->card, &priv->mic_jack, PREFIX);
 	if (ret < 0)
 		return ret;
 
-- 
2.13.0

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

* Re: [PATCH] ASoC: simple-card: fix mic jack initialization
  2017-05-15 21:00 [PATCH] ASoC: simple-card: fix mic jack initialization Stefan Agner
@ 2017-05-15 23:31 ` Kuninori Morimoto
  2017-05-19 17:03 ` Applied "ASoC: simple-card: fix mic jack initialization" to the asoc tree Mark Brown
  1 sibling, 0 replies; 3+ messages in thread
From: Kuninori Morimoto @ 2017-05-15 23:31 UTC (permalink / raw)
  To: Stefan Agner
  Cc: broonie, lgirdwood, perex, tiwai, nikita.yoush, alsa-devel, linux-kernel


Hi

> Initialize asoc_simple_card_init_mic with the correct struct
> asoc_simple_jack.
> 
> Signed-off-by: Stefan Agner <stefan@agner.ch>
> Fixes: 9eac361877b3 ("ASoC: simple-card: add new asoc_simple_jack and use it")
> ---

Acked-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>

>  sound/soc/generic/simple-card.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/sound/soc/generic/simple-card.c b/sound/soc/generic/simple-card.c
> index 2c9dedab5184..bc136d2bd7cd 100644
> --- a/sound/soc/generic/simple-card.c
> +++ b/sound/soc/generic/simple-card.c
> @@ -202,7 +202,7 @@ static int asoc_simple_card_dai_init(struct snd_soc_pcm_runtime *rtd)
>  	if (ret < 0)
>  		return ret;
>  
> -	ret = asoc_simple_card_init_mic(rtd->card, &priv->hp_jack, PREFIX);
> +	ret = asoc_simple_card_init_mic(rtd->card, &priv->mic_jack, PREFIX);
>  	if (ret < 0)
>  		return ret;
>  
> -- 
> 2.13.0
> 


Best regards
---
Kuninori Morimoto

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

* Applied "ASoC: simple-card: fix mic jack initialization" to the asoc tree
  2017-05-15 21:00 [PATCH] ASoC: simple-card: fix mic jack initialization Stefan Agner
  2017-05-15 23:31 ` Kuninori Morimoto
@ 2017-05-19 17:03 ` Mark Brown
  1 sibling, 0 replies; 3+ messages in thread
From: Mark Brown @ 2017-05-19 17:03 UTC (permalink / raw)
  To: Stefan Agner
  Cc: Kuninori Morimoto, Mark Brown, broonie, lgirdwood, perex, tiwai,
	nikita.yoush, alsa-devel, linux-kernel, kuninori.morimoto.gx,
	alsa-devel

The patch

   ASoC: simple-card: fix mic jack initialization

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 f746aa5e8636c83e53bbb2d988bb614f732b2b80 Mon Sep 17 00:00:00 2001
From: Stefan Agner <stefan@agner.ch>
Date: Mon, 15 May 2017 14:00:31 -0700
Subject: [PATCH] ASoC: simple-card: fix mic jack initialization

Initialize asoc_simple_card_init_mic with the correct struct
asoc_simple_jack.

Fixes: 9eac361877b3 ("ASoC: simple-card: add new asoc_simple_jack and use it")
Signed-off-by: Stefan Agner <stefan@agner.ch>
Acked-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
---
 sound/soc/generic/simple-card.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sound/soc/generic/simple-card.c b/sound/soc/generic/simple-card.c
index 2c9dedab5184..bc136d2bd7cd 100644
--- a/sound/soc/generic/simple-card.c
+++ b/sound/soc/generic/simple-card.c
@@ -202,7 +202,7 @@ static int asoc_simple_card_dai_init(struct snd_soc_pcm_runtime *rtd)
 	if (ret < 0)
 		return ret;
 
-	ret = asoc_simple_card_init_mic(rtd->card, &priv->hp_jack, PREFIX);
+	ret = asoc_simple_card_init_mic(rtd->card, &priv->mic_jack, PREFIX);
 	if (ret < 0)
 		return ret;
 
-- 
2.11.0

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

end of thread, other threads:[~2017-05-19 17:03 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-05-15 21:00 [PATCH] ASoC: simple-card: fix mic jack initialization Stefan Agner
2017-05-15 23:31 ` Kuninori Morimoto
2017-05-19 17:03 ` Applied "ASoC: simple-card: fix mic jack initialization" to the asoc tree 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).