All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH RFT] ASoC: da7219: Fix da7219->alc_en state when enabling ALC
@ 2015-10-21  0:34 Axel Lin
  2015-10-21  9:00 ` Opensource [Adam Thomson]
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: Axel Lin @ 2015-10-21  0:34 UTC (permalink / raw)
  To: Mark Brown; +Cc: Adam Thomson, Support Opensource, alsa-devel, Liam Girdwood

Signed-off-by: Axel Lin <axel.lin@ingics.com>
---
 sound/soc/codecs/da7219.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sound/soc/codecs/da7219.c b/sound/soc/codecs/da7219.c
index 86c528a..e36a7b7 100644
--- a/sound/soc/codecs/da7219.c
+++ b/sound/soc/codecs/da7219.c
@@ -402,7 +402,7 @@ static int da7219_alc_sw_put(struct snd_kcontrol *kcontrol,
 	/* Force ALC offset calibration if enabling ALC */
 	if ((ucontrol->value.integer.value[0]) && (!da7219->alc_en)) {
 		da7219_alc_calib(codec);
-		da7219->alc_en = false;
+		da7219->alc_en = true;
 	} else {
 		da7219->alc_en = false;
 	}
-- 
2.1.4

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

* Re: [PATCH RFT] ASoC: da7219: Fix da7219->alc_en state when enabling ALC
  2015-10-21  0:34 [PATCH RFT] ASoC: da7219: Fix da7219->alc_en state when enabling ALC Axel Lin
@ 2015-10-21  9:00 ` Opensource [Adam Thomson]
  2015-10-21 12:34 ` Applied "ASoC: da7219: Fix da7219->alc_en state when enabling ALC" to the asoc tree Mark Brown
  2015-10-21 12:34 ` Mark Brown
  2 siblings, 0 replies; 4+ messages in thread
From: Opensource [Adam Thomson] @ 2015-10-21  9:00 UTC (permalink / raw)
  To: Axel Lin, Mark Brown
  Cc: Opensource [Adam Thomson], Support Opensource, alsa-devel, Liam Girdwood

On October 21, 2015 01:35, Axel Lin wrote:

> Signed-off-by: Axel Lin <axel.lin@ingics.com>
> ---
>  sound/soc/codecs/da7219.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/sound/soc/codecs/da7219.c b/sound/soc/codecs/da7219.c
> index 86c528a..e36a7b7 100644
> --- a/sound/soc/codecs/da7219.c
> +++ b/sound/soc/codecs/da7219.c
> @@ -402,7 +402,7 @@ static int da7219_alc_sw_put(struct snd_kcontrol *kcontrol,
>  	/* Force ALC offset calibration if enabling ALC */
>  	if ((ucontrol->value.integer.value[0]) && (!da7219->alc_en)) {
>  		da7219_alc_calib(codec);
> -		da7219->alc_en = false;
> +		da7219->alc_en = true;
>  	} else {
>  		da7219->alc_en = false;
>  	}
> --
> 2.1.4

Tested-by: Adam Thomson <Adam.Thomson.Opensource@diasemi.com>

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

* Applied "ASoC: da7219: Fix da7219->alc_en state when enabling ALC" to the asoc tree
  2015-10-21  0:34 [PATCH RFT] ASoC: da7219: Fix da7219->alc_en state when enabling ALC Axel Lin
  2015-10-21  9:00 ` Opensource [Adam Thomson]
@ 2015-10-21 12:34 ` Mark Brown
  2015-10-21 12:34 ` Mark Brown
  2 siblings, 0 replies; 4+ messages in thread
From: Mark Brown @ 2015-10-21 12:34 UTC (permalink / raw)
  To: Axel Lin, Adam Thomson, Mark Brown, stable; +Cc: alsa-devel

The patch

   ASoC: da7219: Fix da7219->alc_en state when enabling ALC

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 c5cff89b5f64b4fc7f6fd9be44b1aa7e766a94e4 Mon Sep 17 00:00:00 2001
From: Axel Lin <axel.lin@ingics.com>
Date: Wed, 21 Oct 2015 08:34:37 +0800
Subject: [PATCH] ASoC: da7219: Fix da7219->alc_en state when enabling ALC

Signed-off-by: Axel Lin <axel.lin@ingics.com>
Tested-by: Adam Thomson <Adam.Thomson.Opensource@diasemi.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
Cc: stable@vger.kernel.org
---
 sound/soc/codecs/da7219.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sound/soc/codecs/da7219.c b/sound/soc/codecs/da7219.c
index abba4b3..f238c1e 100644
--- a/sound/soc/codecs/da7219.c
+++ b/sound/soc/codecs/da7219.c
@@ -402,7 +402,7 @@ static int da7219_alc_sw_put(struct snd_kcontrol *kcontrol,
 	/* Force ALC offset calibration if enabling ALC */
 	if ((ucontrol->value.integer.value[0]) && (!da7219->alc_en)) {
 		da7219_alc_calib(codec);
-		da7219->alc_en = false;
+		da7219->alc_en = true;
 	} else {
 		da7219->alc_en = false;
 	}
-- 
2.6.1


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

* Applied "ASoC: da7219: Fix da7219->alc_en state when enabling ALC" to the asoc tree
  2015-10-21  0:34 [PATCH RFT] ASoC: da7219: Fix da7219->alc_en state when enabling ALC Axel Lin
  2015-10-21  9:00 ` Opensource [Adam Thomson]
  2015-10-21 12:34 ` Applied "ASoC: da7219: Fix da7219->alc_en state when enabling ALC" to the asoc tree Mark Brown
@ 2015-10-21 12:34 ` Mark Brown
  2 siblings, 0 replies; 4+ messages in thread
From: Mark Brown @ 2015-10-21 12:34 UTC (permalink / raw)
  To: Axel Lin, Mark Brown; +Cc: alsa-devel

The patch

   ASoC: da7219: Fix da7219->alc_en state when enabling ALC

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 638fae17a370a04a02c44c1539b444d94d1a5bf4 Mon Sep 17 00:00:00 2001
From: Axel Lin <axel.lin@ingics.com>
Date: Wed, 21 Oct 2015 08:34:37 +0800
Subject: [PATCH] ASoC: da7219: Fix da7219->alc_en state when enabling ALC

Signed-off-by: Axel Lin <axel.lin@ingics.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
---
 sound/soc/codecs/da7219.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sound/soc/codecs/da7219.c b/sound/soc/codecs/da7219.c
index abba4b3..f238c1e 100644
--- a/sound/soc/codecs/da7219.c
+++ b/sound/soc/codecs/da7219.c
@@ -402,7 +402,7 @@ static int da7219_alc_sw_put(struct snd_kcontrol *kcontrol,
 	/* Force ALC offset calibration if enabling ALC */
 	if ((ucontrol->value.integer.value[0]) && (!da7219->alc_en)) {
 		da7219_alc_calib(codec);
-		da7219->alc_en = false;
+		da7219->alc_en = true;
 	} else {
 		da7219->alc_en = false;
 	}
-- 
2.6.1

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

end of thread, other threads:[~2015-10-21 12:34 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-10-21  0:34 [PATCH RFT] ASoC: da7219: Fix da7219->alc_en state when enabling ALC Axel Lin
2015-10-21  9:00 ` Opensource [Adam Thomson]
2015-10-21 12:34 ` Applied "ASoC: da7219: Fix da7219->alc_en state when enabling ALC" to the asoc tree Mark Brown
2015-10-21 12:34 ` Mark Brown

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.