alsa-devel.alsa-project.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 1/3] ASoC: max9867: Add CONFIG_SND_SOC_MAX9867 to build
@ 2016-02-20  2:52 Axel Lin
  2016-02-20  2:53 ` [PATCH 2/3] ASoC: max9867: Make max9867_i2c_id NULL terminated Axel Lin
                   ` (3 more replies)
  0 siblings, 4 replies; 7+ messages in thread
From: Axel Lin @ 2016-02-20  2:52 UTC (permalink / raw)
  To: Mark Brown; +Cc: alsa-devel, Liam Girdwood, anish kumar

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

diff --git a/sound/soc/codecs/Makefile b/sound/soc/codecs/Makefile
index 621c0a3..185a712 100644
--- a/sound/soc/codecs/Makefile
+++ b/sound/soc/codecs/Makefile
@@ -283,6 +283,7 @@ obj-$(CONFIG_SND_SOC_MAX98088)	+= snd-soc-max98088.o
 obj-$(CONFIG_SND_SOC_MAX98090)	+= snd-soc-max98090.o
 obj-$(CONFIG_SND_SOC_MAX98095)	+= snd-soc-max98095.o
 obj-$(CONFIG_SND_SOC_MAX98357A)	+= snd-soc-max98357a.o
+obj-$(CONFIG_SND_SOC_MAX9867)	+= snd-soc-max9867.o
 obj-$(CONFIG_SND_SOC_MAX98925)	+= snd-soc-max98925.o
 obj-$(CONFIG_SND_SOC_MAX98926)	+= snd-soc-max98926.o
 obj-$(CONFIG_SND_SOC_MAX9850)	+= snd-soc-max9850.o
-- 
2.1.4

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

* [PATCH 2/3] ASoC: max9867: Make max9867_i2c_id NULL terminated
  2016-02-20  2:52 [PATCH 1/3] ASoC: max9867: Add CONFIG_SND_SOC_MAX9867 to build Axel Lin
@ 2016-02-20  2:53 ` Axel Lin
  2016-02-20 18:10   ` Applied "ASoC: max9867: Make max9867_i2c_id NULL terminated" to the asoc tree Mark Brown
  2016-02-20  2:54 ` [PATCH 3/3] ASoC: max9867: Constify max9867_reg and max9867_regmap Axel Lin
                   ` (2 subsequent siblings)
  3 siblings, 1 reply; 7+ messages in thread
From: Axel Lin @ 2016-02-20  2:53 UTC (permalink / raw)
  To: Mark Brown; +Cc: alsa-devel, Liam Girdwood, anish kumar

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

diff --git a/sound/soc/codecs/max9867.c b/sound/soc/codecs/max9867.c
index 5a8481b..70b5406 100755
--- a/sound/soc/codecs/max9867.c
+++ b/sound/soc/codecs/max9867.c
@@ -512,6 +512,7 @@ static int max9867_i2c_remove(struct i2c_client *client)
 
 static const struct i2c_device_id max9867_i2c_id[] = {
 	{ "max9867", 0 },
+	{ }
 };
 
 static const struct of_device_id max9867_of_match[] = {
-- 
2.1.4

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

* [PATCH 3/3] ASoC: max9867: Constify max9867_reg and max9867_regmap
  2016-02-20  2:52 [PATCH 1/3] ASoC: max9867: Add CONFIG_SND_SOC_MAX9867 to build Axel Lin
  2016-02-20  2:53 ` [PATCH 2/3] ASoC: max9867: Make max9867_i2c_id NULL terminated Axel Lin
@ 2016-02-20  2:54 ` Axel Lin
  2016-02-20 18:10   ` Applied "ASoC: max9867: Constify max9867_reg and max9867_regmap" to the asoc tree Mark Brown
  2016-02-20  9:37 ` [PATCH 1/3] ASoC: max9867: Add CONFIG_SND_SOC_MAX9867 to build anish kumar
  2016-02-20 18:10 ` Applied "ASoC: max9867: Add CONFIG_SND_SOC_MAX9867 to build" to the asoc tree Mark Brown
  3 siblings, 1 reply; 7+ messages in thread
From: Axel Lin @ 2016-02-20  2:54 UTC (permalink / raw)
  To: Mark Brown; +Cc: alsa-devel, Liam Girdwood, anish kumar

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

diff --git a/sound/soc/codecs/max9867.c b/sound/soc/codecs/max9867.c
index 70b5406..ab7a94d 100755
--- a/sound/soc/codecs/max9867.c
+++ b/sound/soc/codecs/max9867.c
@@ -436,7 +436,7 @@ static bool max9867_volatile_register(struct device *dev, unsigned int reg)
 	}
 }
 
-static struct reg_default max9867_reg[] = {
+static const struct reg_default max9867_reg[] = {
 	{ 0x04, 0x00 },
 	{ 0x05, 0x00 },
 	{ 0x06, 0x00 },
@@ -459,7 +459,7 @@ static struct reg_default max9867_reg[] = {
 	{ 0x17, 0x00 },
 };
 
-static struct regmap_config max9867_regmap = {
+static const struct regmap_config max9867_regmap = {
 	.reg_bits	= 8,
 	.val_bits	= 8,
 	.max_register	= MAX9867_REVISION,
-- 
2.1.4

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

* Re: [PATCH 1/3] ASoC: max9867: Add CONFIG_SND_SOC_MAX9867 to build
  2016-02-20  2:52 [PATCH 1/3] ASoC: max9867: Add CONFIG_SND_SOC_MAX9867 to build Axel Lin
  2016-02-20  2:53 ` [PATCH 2/3] ASoC: max9867: Make max9867_i2c_id NULL terminated Axel Lin
  2016-02-20  2:54 ` [PATCH 3/3] ASoC: max9867: Constify max9867_reg and max9867_regmap Axel Lin
@ 2016-02-20  9:37 ` anish kumar
  2016-02-20 18:10 ` Applied "ASoC: max9867: Add CONFIG_SND_SOC_MAX9867 to build" to the asoc tree Mark Brown
  3 siblings, 0 replies; 7+ messages in thread
From: anish kumar @ 2016-02-20  9:37 UTC (permalink / raw)
  To: Axel Lin; +Cc: Linux-ALSA, Mark Brown, Liam Girdwood

Acked-by: anish kumar<yesanishhere@gmail.com>

On Fri, Feb 19, 2016 at 6:52 PM, Axel Lin <axel.lin@ingics.com> wrote:
> Signed-off-by: Axel Lin <axel.lin@ingics.com>
> ---
>  sound/soc/codecs/Makefile | 1 +
>  1 file changed, 1 insertion(+)
>
> diff --git a/sound/soc/codecs/Makefile b/sound/soc/codecs/Makefile
> index 621c0a3..185a712 100644
> --- a/sound/soc/codecs/Makefile
> +++ b/sound/soc/codecs/Makefile
> @@ -283,6 +283,7 @@ obj-$(CONFIG_SND_SOC_MAX98088)      += snd-soc-max98088.o
>  obj-$(CONFIG_SND_SOC_MAX98090) += snd-soc-max98090.o
>  obj-$(CONFIG_SND_SOC_MAX98095) += snd-soc-max98095.o
>  obj-$(CONFIG_SND_SOC_MAX98357A)        += snd-soc-max98357a.o
> +obj-$(CONFIG_SND_SOC_MAX9867)  += snd-soc-max9867.o
>  obj-$(CONFIG_SND_SOC_MAX98925) += snd-soc-max98925.o
>  obj-$(CONFIG_SND_SOC_MAX98926) += snd-soc-max98926.o
>  obj-$(CONFIG_SND_SOC_MAX9850)  += snd-soc-max9850.o
> --
> 2.1.4
>
>
>

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

* Applied "ASoC: max9867: Constify max9867_reg and max9867_regmap" to the asoc tree
  2016-02-20  2:54 ` [PATCH 3/3] ASoC: max9867: Constify max9867_reg and max9867_regmap Axel Lin
@ 2016-02-20 18:10   ` Mark Brown
  0 siblings, 0 replies; 7+ messages in thread
From: Mark Brown @ 2016-02-20 18:10 UTC (permalink / raw)
  To: Axel Lin, anish kumar, Mark Brown; +Cc: alsa-devel

The patch

   ASoC: max9867: Constify max9867_reg and max9867_regmap

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 250a99e70bf8628397901e10ad99a281dfc489d5 Mon Sep 17 00:00:00 2001
From: Axel Lin <axel.lin@ingics.com>
Date: Sat, 20 Feb 2016 10:54:11 +0800
Subject: [PATCH] ASoC: max9867: Constify max9867_reg and max9867_regmap

Signed-off-by: Axel Lin <axel.lin@ingics.com>
Acked-by: anish kumar <yesanishhere@gmail.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
---
 sound/soc/codecs/max9867.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/sound/soc/codecs/max9867.c b/sound/soc/codecs/max9867.c
index 70b5406..ab7a94d 100755
--- a/sound/soc/codecs/max9867.c
+++ b/sound/soc/codecs/max9867.c
@@ -436,7 +436,7 @@ static bool max9867_volatile_register(struct device *dev, unsigned int reg)
 	}
 }
 
-static struct reg_default max9867_reg[] = {
+static const struct reg_default max9867_reg[] = {
 	{ 0x04, 0x00 },
 	{ 0x05, 0x00 },
 	{ 0x06, 0x00 },
@@ -459,7 +459,7 @@ static struct reg_default max9867_reg[] = {
 	{ 0x17, 0x00 },
 };
 
-static struct regmap_config max9867_regmap = {
+static const struct regmap_config max9867_regmap = {
 	.reg_bits	= 8,
 	.val_bits	= 8,
 	.max_register	= MAX9867_REVISION,
-- 
2.7.0

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

* Applied "ASoC: max9867: Make max9867_i2c_id NULL terminated" to the asoc tree
  2016-02-20  2:53 ` [PATCH 2/3] ASoC: max9867: Make max9867_i2c_id NULL terminated Axel Lin
@ 2016-02-20 18:10   ` Mark Brown
  0 siblings, 0 replies; 7+ messages in thread
From: Mark Brown @ 2016-02-20 18:10 UTC (permalink / raw)
  To: Axel Lin, anish kumar, Mark Brown; +Cc: alsa-devel

The patch

   ASoC: max9867: Make max9867_i2c_id NULL terminated

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 1b36e4a2ab0cfcc322153337d2615bc6fa922567 Mon Sep 17 00:00:00 2001
From: Axel Lin <axel.lin@ingics.com>
Date: Sat, 20 Feb 2016 10:53:15 +0800
Subject: [PATCH] ASoC: max9867: Make max9867_i2c_id NULL terminated

Signed-off-by: Axel Lin <axel.lin@ingics.com>
Acked-by: anish kumar <yesanishhere@gmail.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
---
 sound/soc/codecs/max9867.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/sound/soc/codecs/max9867.c b/sound/soc/codecs/max9867.c
index 5a8481b..70b5406 100755
--- a/sound/soc/codecs/max9867.c
+++ b/sound/soc/codecs/max9867.c
@@ -512,6 +512,7 @@ static int max9867_i2c_remove(struct i2c_client *client)
 
 static const struct i2c_device_id max9867_i2c_id[] = {
 	{ "max9867", 0 },
+	{ }
 };
 
 static const struct of_device_id max9867_of_match[] = {
-- 
2.7.0

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

* Applied "ASoC: max9867: Add CONFIG_SND_SOC_MAX9867 to build" to the asoc tree
  2016-02-20  2:52 [PATCH 1/3] ASoC: max9867: Add CONFIG_SND_SOC_MAX9867 to build Axel Lin
                   ` (2 preceding siblings ...)
  2016-02-20  9:37 ` [PATCH 1/3] ASoC: max9867: Add CONFIG_SND_SOC_MAX9867 to build anish kumar
@ 2016-02-20 18:10 ` Mark Brown
  3 siblings, 0 replies; 7+ messages in thread
From: Mark Brown @ 2016-02-20 18:10 UTC (permalink / raw)
  To: Axel Lin, anish kumar, Mark Brown; +Cc: alsa-devel

The patch

   ASoC: max9867: Add CONFIG_SND_SOC_MAX9867 to build

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 ee06b6f0675907191656b11a8405a03c6d599ea9 Mon Sep 17 00:00:00 2001
From: Axel Lin <axel.lin@ingics.com>
Date: Sat, 20 Feb 2016 10:52:32 +0800
Subject: [PATCH] ASoC: max9867: Add CONFIG_SND_SOC_MAX9867 to build

Signed-off-by: Axel Lin <axel.lin@ingics.com>
Acked-by: anish kumar <yesanishhere@gmail.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
---
 sound/soc/codecs/Makefile | 1 +
 1 file changed, 1 insertion(+)

diff --git a/sound/soc/codecs/Makefile b/sound/soc/codecs/Makefile
index b84fe9d..f35237d 100644
--- a/sound/soc/codecs/Makefile
+++ b/sound/soc/codecs/Makefile
@@ -280,6 +280,7 @@ obj-$(CONFIG_SND_SOC_MAX98088)	+= snd-soc-max98088.o
 obj-$(CONFIG_SND_SOC_MAX98090)	+= snd-soc-max98090.o
 obj-$(CONFIG_SND_SOC_MAX98095)	+= snd-soc-max98095.o
 obj-$(CONFIG_SND_SOC_MAX98357A)	+= snd-soc-max98357a.o
+obj-$(CONFIG_SND_SOC_MAX9867)	+= snd-soc-max9867.o
 obj-$(CONFIG_SND_SOC_MAX98925)	+= snd-soc-max98925.o
 obj-$(CONFIG_SND_SOC_MAX98926)	+= snd-soc-max98926.o
 obj-$(CONFIG_SND_SOC_MAX9850)	+= snd-soc-max9850.o
-- 
2.7.0

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

end of thread, other threads:[~2016-02-20 18:10 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-02-20  2:52 [PATCH 1/3] ASoC: max9867: Add CONFIG_SND_SOC_MAX9867 to build Axel Lin
2016-02-20  2:53 ` [PATCH 2/3] ASoC: max9867: Make max9867_i2c_id NULL terminated Axel Lin
2016-02-20 18:10   ` Applied "ASoC: max9867: Make max9867_i2c_id NULL terminated" to the asoc tree Mark Brown
2016-02-20  2:54 ` [PATCH 3/3] ASoC: max9867: Constify max9867_reg and max9867_regmap Axel Lin
2016-02-20 18:10   ` Applied "ASoC: max9867: Constify max9867_reg and max9867_regmap" to the asoc tree Mark Brown
2016-02-20  9:37 ` [PATCH 1/3] ASoC: max9867: Add CONFIG_SND_SOC_MAX9867 to build anish kumar
2016-02-20 18:10 ` Applied "ASoC: max9867: Add CONFIG_SND_SOC_MAX9867 to build" 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).