All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] ASoC: tas2552: Fix off-by-one for max_register setting
@ 2015-07-23 14:56 Axel Lin
  2015-07-23 15:26 ` Dan Murphy
  2015-07-23 15:47 ` Applied "ASoC: tas2552: Fix off-by-one for max_register setting" to the asoc tree Mark Brown
  0 siblings, 2 replies; 3+ messages in thread
From: Axel Lin @ 2015-07-23 14:56 UTC (permalink / raw)
  To: Mark Brown; +Cc: alsa-devel, Liam Girdwood, Dan Muprhy

The latest valid register is TAS2552_VBAT_DATA.

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

diff --git a/sound/soc/codecs/tas2552.h b/sound/soc/codecs/tas2552.h
index 5746f8f..e34752b 100644
--- a/sound/soc/codecs/tas2552.h
+++ b/sound/soc/codecs/tas2552.h
@@ -42,7 +42,7 @@
 #define TAS2552_BOOST_APT_CTRL		0x14
 #define TAS2552_VER_NUM			0x16
 #define TAS2552_VBAT_DATA		0x19
-#define TAS2552_MAX_REG			0x20
+#define TAS2552_MAX_REG			TAS2552_VBAT_DATA
 
 /* CFG1 Register Masks */
 #define TAS2552_DEV_RESET		(1 << 0)
-- 
2.1.0

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

* Re: [PATCH] ASoC: tas2552: Fix off-by-one for max_register setting
  2015-07-23 14:56 [PATCH] ASoC: tas2552: Fix off-by-one for max_register setting Axel Lin
@ 2015-07-23 15:26 ` Dan Murphy
  2015-07-23 15:47 ` Applied "ASoC: tas2552: Fix off-by-one for max_register setting" to the asoc tree Mark Brown
  1 sibling, 0 replies; 3+ messages in thread
From: Dan Murphy @ 2015-07-23 15:26 UTC (permalink / raw)
  To: Axel Lin, Mark Brown; +Cc: alsa-devel, Liam Girdwood

On 07/23/2015 09:56 AM, Axel Lin wrote:
> The latest valid register is TAS2552_VBAT_DATA.
>
> Signed-off-by: Axel Lin <axel.lin@ingics.com>
> ---
>  sound/soc/codecs/tas2552.h | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/sound/soc/codecs/tas2552.h b/sound/soc/codecs/tas2552.h
> index 5746f8f..e34752b 100644
> --- a/sound/soc/codecs/tas2552.h
> +++ b/sound/soc/codecs/tas2552.h
> @@ -42,7 +42,7 @@
>  #define TAS2552_BOOST_APT_CTRL		0x14
>  #define TAS2552_VER_NUM			0x16
>  #define TAS2552_VBAT_DATA		0x19
> -#define TAS2552_MAX_REG			0x20
> +#define TAS2552_MAX_REG			TAS2552_VBAT_DATA
>  
>  /* CFG1 Register Masks */
>  #define TAS2552_DEV_RESET		(1 << 0)
Acked-by: Dan Murphy<dmurphy@ti.com>

-- 
------------------
Dan Murphy

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

* Applied "ASoC: tas2552: Fix off-by-one for max_register setting" to the asoc tree
  2015-07-23 14:56 [PATCH] ASoC: tas2552: Fix off-by-one for max_register setting Axel Lin
  2015-07-23 15:26 ` Dan Murphy
@ 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, Dan Murphy, Mark Brown; +Cc: alsa-devel

The patch

   ASoC: tas2552: Fix off-by-one for max_register setting

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 95f1044f5674b53f67e0933abff228c594792f4c Mon Sep 17 00:00:00 2001
From: Axel Lin <axel.lin@ingics.com>
Date: Thu, 23 Jul 2015 22:56:04 +0800
Subject: [PATCH] ASoC: tas2552: Fix off-by-one for max_register setting

The latest valid register is TAS2552_VBAT_DATA.

Signed-off-by: Axel Lin <axel.lin@ingics.com>
Acked-by: Dan Murphy<dmurphy@ti.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
---
 sound/soc/codecs/tas2552.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sound/soc/codecs/tas2552.h b/sound/soc/codecs/tas2552.h
index 5746f8fd0afd..e34752b8a299 100644
--- a/sound/soc/codecs/tas2552.h
+++ b/sound/soc/codecs/tas2552.h
@@ -42,7 +42,7 @@
 #define TAS2552_BOOST_APT_CTRL		0x14
 #define TAS2552_VER_NUM			0x16
 #define TAS2552_VBAT_DATA		0x19
-#define TAS2552_MAX_REG			0x20
+#define TAS2552_MAX_REG			TAS2552_VBAT_DATA
 
 /* CFG1 Register Masks */
 #define TAS2552_DEV_RESET		(1 << 0)
-- 
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 14:56 [PATCH] ASoC: tas2552: Fix off-by-one for max_register setting Axel Lin
2015-07-23 15:26 ` Dan Murphy
2015-07-23 15:47 ` Applied "ASoC: tas2552: Fix off-by-one for max_register setting" 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.