All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] ASoC: tas5086: Improve the logic for de-emphasis sampling rate selection
@ 2015-07-23 15:13 Axel Lin
  2015-07-23 15:35 ` Daniel Mack
  2015-07-23 15:47 ` Applied "ASoC: tas5086: Improve the logic for de-emphasis sampling rate selection" to the asoc tree Mark Brown
  0 siblings, 2 replies; 3+ messages in thread
From: Axel Lin @ 2015-07-23 15:13 UTC (permalink / raw)
  To: Mark Brown; +Cc: alsa-devel, Liam Girdwood, Daniel Mack

Slightly improve the logic for de-emphasis sampling rate selection by break
out the loop if the rate is matched.

Signed-off-by: Axel Lin <axel.lin@ingics.com>
---
 sound/soc/codecs/tas5086.c | 10 +++++++---
 1 file changed, 7 insertions(+), 3 deletions(-)

diff --git a/sound/soc/codecs/tas5086.c b/sound/soc/codecs/tas5086.c
index 0a49fc8..d49d25d 100644
--- a/sound/soc/codecs/tas5086.c
+++ b/sound/soc/codecs/tas5086.c
@@ -266,10 +266,14 @@ static int tas5086_set_deemph(struct snd_soc_codec *codec)
 	struct tas5086_private *priv = snd_soc_codec_get_drvdata(codec);
 	int i, val = 0;
 
-	if (priv->deemph)
-		for (i = 0; i < ARRAY_SIZE(tas5086_deemph); i++)
-			if (tas5086_deemph[i] == priv->rate)
+	if (priv->deemph) {
+		for (i = 0; i < ARRAY_SIZE(tas5086_deemph); i++) {
+			if (tas5086_deemph[i] == priv->rate) {
 				val = i;
+				break;
+			}
+		}
+	}
 
 	return regmap_update_bits(priv->regmap, TAS5086_SYS_CONTROL_1,
 				  TAS5086_DEEMPH_MASK, val);
-- 
2.1.0

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

* Re: [PATCH] ASoC: tas5086: Improve the logic for de-emphasis sampling rate selection
  2015-07-23 15:13 [PATCH] ASoC: tas5086: Improve the logic for de-emphasis sampling rate selection Axel Lin
@ 2015-07-23 15:35 ` Daniel Mack
  2015-07-23 15:47 ` Applied "ASoC: tas5086: Improve the logic for de-emphasis sampling rate selection" to the asoc tree Mark Brown
  1 sibling, 0 replies; 3+ messages in thread
From: Daniel Mack @ 2015-07-23 15:35 UTC (permalink / raw)
  To: Axel Lin, Mark Brown; +Cc: alsa-devel, Liam Girdwood, Daniel Mack

On 07/23/2015 05:13 PM, Axel Lin wrote:
> Slightly improve the logic for de-emphasis sampling rate selection by break
> out the loop if the rate is matched.
> 
> Signed-off-by: Axel Lin <axel.lin@ingics.com>

Acked-by: Daniel Mack <daniel@zonque.org>


Thanks,
Daniel


> ---
>  sound/soc/codecs/tas5086.c | 10 +++++++---
>  1 file changed, 7 insertions(+), 3 deletions(-)
> 
> diff --git a/sound/soc/codecs/tas5086.c b/sound/soc/codecs/tas5086.c
> index 0a49fc8..d49d25d 100644
> --- a/sound/soc/codecs/tas5086.c
> +++ b/sound/soc/codecs/tas5086.c
> @@ -266,10 +266,14 @@ static int tas5086_set_deemph(struct snd_soc_codec *codec)
>  	struct tas5086_private *priv = snd_soc_codec_get_drvdata(codec);
>  	int i, val = 0;
>  
> -	if (priv->deemph)
> -		for (i = 0; i < ARRAY_SIZE(tas5086_deemph); i++)
> -			if (tas5086_deemph[i] == priv->rate)
> +	if (priv->deemph) {
> +		for (i = 0; i < ARRAY_SIZE(tas5086_deemph); i++) {
> +			if (tas5086_deemph[i] == priv->rate) {
>  				val = i;
> +				break;
> +			}
> +		}
> +	}
>  
>  	return regmap_update_bits(priv->regmap, TAS5086_SYS_CONTROL_1,
>  				  TAS5086_DEEMPH_MASK, val);
> 

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

* Applied "ASoC: tas5086: Improve the logic for de-emphasis sampling rate selection" to the asoc tree
  2015-07-23 15:13 [PATCH] ASoC: tas5086: Improve the logic for de-emphasis sampling rate selection Axel Lin
  2015-07-23 15:35 ` Daniel Mack
@ 2015-07-23 15:47 ` Mark Brown
  1 sibling, 0 replies; 3+ messages in thread
From: Mark Brown @ 2015-07-23 15:47 UTC (permalink / raw)
  To: Axel Lin, Daniel Mack, Mark Brown; +Cc: alsa-devel

The patch

   ASoC: tas5086: Improve the logic for de-emphasis sampling rate selection

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 9425e9d8c77dd9f40c5f199127a63be2e2b7c1f4 Mon Sep 17 00:00:00 2001
From: Axel Lin <axel.lin@ingics.com>
Date: Thu, 23 Jul 2015 23:13:36 +0800
Subject: [PATCH] ASoC: tas5086: Improve the logic for de-emphasis sampling
 rate selection

Slightly improve the logic for de-emphasis sampling rate selection by break
out the loop if the rate is matched.

Signed-off-by: Axel Lin <axel.lin@ingics.com>
Acked-by: Daniel Mack <daniel@zonque.org>
Signed-off-by: Mark Brown <broonie@kernel.org>
---
 sound/soc/codecs/tas5086.c | 10 +++++++---
 1 file changed, 7 insertions(+), 3 deletions(-)

diff --git a/sound/soc/codecs/tas5086.c b/sound/soc/codecs/tas5086.c
index 32942bed34b1..16a6c6443aa8 100644
--- a/sound/soc/codecs/tas5086.c
+++ b/sound/soc/codecs/tas5086.c
@@ -266,10 +266,14 @@ static int tas5086_set_deemph(struct snd_soc_codec *codec)
 	struct tas5086_private *priv = snd_soc_codec_get_drvdata(codec);
 	int i, val = 0;
 
-	if (priv->deemph)
-		for (i = 0; i < ARRAY_SIZE(tas5086_deemph); i++)
-			if (tas5086_deemph[i] == priv->rate)
+	if (priv->deemph) {
+		for (i = 0; i < ARRAY_SIZE(tas5086_deemph); i++) {
+			if (tas5086_deemph[i] == priv->rate) {
 				val = i;
+				break;
+			}
+		}
+	}
 
 	return regmap_update_bits(priv->regmap, TAS5086_SYS_CONTROL_1,
 				  TAS5086_DEEMPH_MASK, val);
-- 
2.1.4

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

end of thread, other threads:[~2015-07-23 15:47 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-07-23 15:13 [PATCH] ASoC: tas5086: Improve the logic for de-emphasis sampling rate selection Axel Lin
2015-07-23 15:35 ` Daniel Mack
2015-07-23 15:47 ` Applied "ASoC: tas5086: Improve the logic for de-emphasis sampling rate selection" to the asoc tree 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.