All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 0/7 linux-next] sound: constify of_device_id array
@ 2015-03-18 16:48 ` Fabian Frederick
  0 siblings, 0 replies; 19+ messages in thread
From: Fabian Frederick @ 2015-03-18 16:48 UTC (permalink / raw)
  To: linux-kernel
  Cc: Fabian Frederick, Johannes Berg, Jaroslav Kysela, Takashi Iwai,
	Liam Girdwood, Mark Brown, Bard Liao, Oder Chiou, linuxppc-dev,
	alsa-devel

This small patchset adds const to of_device_id arrays in
sound branch.

Fabian Frederick (7):
  ALSA: aoa: constify of_device_id array
  ASoC: fsl: constify of_device_id array
  ASoC: kirkwood: constify of_device_id array
  ASoC: rt5631: constify of_device_id array
  ASoC: ak4554: constify of_device_id array
  ASoC: fsi: constify of_device_id array
  ASoC: rsnd: constify of_device_id array

 sound/aoa/soundbus/i2sbus/core.c    | 2 +-
 sound/soc/codecs/ak4554.c           | 2 +-
 sound/soc/codecs/rt5631.c           | 2 +-
 sound/soc/fsl/mpc5200_psc_ac97.c    | 2 +-
 sound/soc/fsl/mpc5200_psc_i2s.c     | 2 +-
 sound/soc/fsl/pcm030-audio-fabric.c | 2 +-
 sound/soc/kirkwood/kirkwood-i2s.c   | 2 +-
 sound/soc/sh/fsi.c                  | 4 ++--
 sound/soc/sh/rcar/core.c            | 2 +-
 9 files changed, 10 insertions(+), 10 deletions(-)

-- 
1.9.1


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

* [PATCH 0/7 linux-next] sound: constify of_device_id array
@ 2015-03-18 16:48 ` Fabian Frederick
  0 siblings, 0 replies; 19+ messages in thread
From: Fabian Frederick @ 2015-03-18 16:48 UTC (permalink / raw)
  To: linux-kernel
  Cc: Oder Chiou, alsa-devel, Takashi Iwai, Liam Girdwood,
	Jaroslav Kysela, Fabian Frederick, Mark Brown, Bard Liao,
	Johannes Berg, linuxppc-dev

This small patchset adds const to of_device_id arrays in
sound branch.

Fabian Frederick (7):
  ALSA: aoa: constify of_device_id array
  ASoC: fsl: constify of_device_id array
  ASoC: kirkwood: constify of_device_id array
  ASoC: rt5631: constify of_device_id array
  ASoC: ak4554: constify of_device_id array
  ASoC: fsi: constify of_device_id array
  ASoC: rsnd: constify of_device_id array

 sound/aoa/soundbus/i2sbus/core.c    | 2 +-
 sound/soc/codecs/ak4554.c           | 2 +-
 sound/soc/codecs/rt5631.c           | 2 +-
 sound/soc/fsl/mpc5200_psc_ac97.c    | 2 +-
 sound/soc/fsl/mpc5200_psc_i2s.c     | 2 +-
 sound/soc/fsl/pcm030-audio-fabric.c | 2 +-
 sound/soc/kirkwood/kirkwood-i2s.c   | 2 +-
 sound/soc/sh/fsi.c                  | 4 ++--
 sound/soc/sh/rcar/core.c            | 2 +-
 9 files changed, 10 insertions(+), 10 deletions(-)

-- 
1.9.1

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

* [PATCH 1/7 linux-next] ALSA: aoa: constify of_device_id array
  2015-03-18 16:48 ` Fabian Frederick
  (?)
@ 2015-03-18 16:48   ` Fabian Frederick
  -1 siblings, 0 replies; 19+ messages in thread
From: Fabian Frederick @ 2015-03-18 16:48 UTC (permalink / raw)
  To: linux-kernel
  Cc: Fabian Frederick, Johannes Berg, Jaroslav Kysela, Takashi Iwai,
	linuxppc-dev, alsa-devel

of_device_id is always used as const.
(See driver.of_match_table and open firmware functions)

Signed-off-by: Fabian Frederick <fabf@skynet.be>
---
 sound/aoa/soundbus/i2sbus/core.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sound/aoa/soundbus/i2sbus/core.c b/sound/aoa/soundbus/i2sbus/core.c
index b9737fa..1cbf210 100644
--- a/sound/aoa/soundbus/i2sbus/core.c
+++ b/sound/aoa/soundbus/i2sbus/core.c
@@ -31,7 +31,7 @@ module_param(force, int, 0444);
 MODULE_PARM_DESC(force, "Force loading i2sbus even when"
 			" no layout-id property is present");
 
-static struct of_device_id i2sbus_match[] = {
+static const struct of_device_id i2sbus_match[] = {
 	{ .name = "i2s" },
 	{ }
 };
-- 
1.9.1


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

* [PATCH 1/7 linux-next] ALSA: aoa: constify of_device_id array
@ 2015-03-18 16:48   ` Fabian Frederick
  0 siblings, 0 replies; 19+ messages in thread
From: Fabian Frederick @ 2015-03-18 16:48 UTC (permalink / raw)
  To: linux-kernel
  Cc: alsa-devel, Takashi Iwai, Fabian Frederick, Johannes Berg, linuxppc-dev

of_device_id is always used as const.
(See driver.of_match_table and open firmware functions)

Signed-off-by: Fabian Frederick <fabf@skynet.be>
---
 sound/aoa/soundbus/i2sbus/core.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sound/aoa/soundbus/i2sbus/core.c b/sound/aoa/soundbus/i2sbus/core.c
index b9737fa..1cbf210 100644
--- a/sound/aoa/soundbus/i2sbus/core.c
+++ b/sound/aoa/soundbus/i2sbus/core.c
@@ -31,7 +31,7 @@ module_param(force, int, 0444);
 MODULE_PARM_DESC(force, "Force loading i2sbus even when"
 			" no layout-id property is present");
 
-static struct of_device_id i2sbus_match[] = {
+static const struct of_device_id i2sbus_match[] = {
 	{ .name = "i2s" },
 	{ }
 };
-- 
1.9.1

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

* [PATCH 1/7 linux-next] ALSA: aoa: constify of_device_id array
@ 2015-03-18 16:48   ` Fabian Frederick
  0 siblings, 0 replies; 19+ messages in thread
From: Fabian Frederick @ 2015-03-18 16:48 UTC (permalink / raw)
  To: linux-kernel
  Cc: alsa-devel, Takashi Iwai, Jaroslav Kysela, Fabian Frederick,
	Johannes Berg, linuxppc-dev

of_device_id is always used as const.
(See driver.of_match_table and open firmware functions)

Signed-off-by: Fabian Frederick <fabf@skynet.be>
---
 sound/aoa/soundbus/i2sbus/core.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sound/aoa/soundbus/i2sbus/core.c b/sound/aoa/soundbus/i2sbus/core.c
index b9737fa..1cbf210 100644
--- a/sound/aoa/soundbus/i2sbus/core.c
+++ b/sound/aoa/soundbus/i2sbus/core.c
@@ -31,7 +31,7 @@ module_param(force, int, 0444);
 MODULE_PARM_DESC(force, "Force loading i2sbus even when"
 			" no layout-id property is present");
 
-static struct of_device_id i2sbus_match[] = {
+static const struct of_device_id i2sbus_match[] = {
 	{ .name = "i2s" },
 	{ }
 };
-- 
1.9.1

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

* [PATCH 2/7 linux-next] ASoC: fsl: constify of_device_id array
  2015-03-18 16:48 ` Fabian Frederick
  (?)
  (?)
@ 2015-03-18 16:48 ` Fabian Frederick
  2015-03-22 18:03   ` Mark Brown
  -1 siblings, 1 reply; 19+ messages in thread
From: Fabian Frederick @ 2015-03-18 16:48 UTC (permalink / raw)
  To: linux-kernel
  Cc: Fabian Frederick, Liam Girdwood, Mark Brown, Jaroslav Kysela,
	Takashi Iwai, alsa-devel

of_device_id is always used as const.
(See driver.of_match_table and open firmware functions)

Signed-off-by: Fabian Frederick <fabf@skynet.be>
---
 sound/soc/fsl/mpc5200_psc_ac97.c    | 2 +-
 sound/soc/fsl/mpc5200_psc_i2s.c     | 2 +-
 sound/soc/fsl/pcm030-audio-fabric.c | 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/sound/soc/fsl/mpc5200_psc_ac97.c b/sound/soc/fsl/mpc5200_psc_ac97.c
index 08d2a80..0bab760 100644
--- a/sound/soc/fsl/mpc5200_psc_ac97.c
+++ b/sound/soc/fsl/mpc5200_psc_ac97.c
@@ -326,7 +326,7 @@ static int psc_ac97_of_remove(struct platform_device *op)
 }
 
 /* Match table for of_platform binding */
-static struct of_device_id psc_ac97_match[] = {
+static const struct of_device_id psc_ac97_match[] = {
 	{ .compatible = "fsl,mpc5200-psc-ac97", },
 	{ .compatible = "fsl,mpc5200b-psc-ac97", },
 	{}
diff --git a/sound/soc/fsl/mpc5200_psc_i2s.c b/sound/soc/fsl/mpc5200_psc_i2s.c
index 51fb0c0..d823294 100644
--- a/sound/soc/fsl/mpc5200_psc_i2s.c
+++ b/sound/soc/fsl/mpc5200_psc_i2s.c
@@ -217,7 +217,7 @@ static int psc_i2s_of_remove(struct platform_device *op)
 }
 
 /* Match table for of_platform binding */
-static struct of_device_id psc_i2s_match[] = {
+static const struct of_device_id psc_i2s_match[] = {
 	{ .compatible = "fsl,mpc5200-psc-i2s", },
 	{ .compatible = "fsl,mpc5200b-psc-i2s", },
 	{}
diff --git a/sound/soc/fsl/pcm030-audio-fabric.c b/sound/soc/fsl/pcm030-audio-fabric.c
index c44459d..ec73122 100644
--- a/sound/soc/fsl/pcm030-audio-fabric.c
+++ b/sound/soc/fsl/pcm030-audio-fabric.c
@@ -113,7 +113,7 @@ static int pcm030_fabric_remove(struct platform_device *op)
 	return ret;
 }
 
-static struct of_device_id pcm030_audio_match[] = {
+static const struct of_device_id pcm030_audio_match[] = {
 	{ .compatible = "phytec,pcm030-audio-fabric", },
 	{}
 };
-- 
1.9.1


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

* [PATCH 3/7 linux-next] ASoC: kirkwood: constify of_device_id array
  2015-03-18 16:48 ` Fabian Frederick
                   ` (2 preceding siblings ...)
  (?)
@ 2015-03-18 16:48 ` Fabian Frederick
  2015-03-22 18:03   ` Mark Brown
  -1 siblings, 1 reply; 19+ messages in thread
From: Fabian Frederick @ 2015-03-18 16:48 UTC (permalink / raw)
  To: linux-kernel
  Cc: Fabian Frederick, Liam Girdwood, Mark Brown, Jaroslav Kysela,
	Takashi Iwai, alsa-devel

of_device_id is always used as const.
(See driver.of_match_table and open firmware functions)

Signed-off-by: Fabian Frederick <fabf@skynet.be>
---
 sound/soc/kirkwood/kirkwood-i2s.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sound/soc/kirkwood/kirkwood-i2s.c b/sound/soc/kirkwood/kirkwood-i2s.c
index d194830..3a36d60 100644
--- a/sound/soc/kirkwood/kirkwood-i2s.c
+++ b/sound/soc/kirkwood/kirkwood-i2s.c
@@ -643,7 +643,7 @@ static int kirkwood_i2s_dev_remove(struct platform_device *pdev)
 }
 
 #ifdef CONFIG_OF
-static struct of_device_id mvebu_audio_of_match[] = {
+static const struct of_device_id mvebu_audio_of_match[] = {
 	{ .compatible = "marvell,kirkwood-audio" },
 	{ .compatible = "marvell,dove-audio" },
 	{ .compatible = "marvell,armada370-audio" },
-- 
1.9.1


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

* [PATCH 4/7 linux-next] ASoC: rt5631: constify of_device_id array
  2015-03-18 16:48 ` Fabian Frederick
                   ` (3 preceding siblings ...)
  (?)
@ 2015-03-18 16:48 ` Fabian Frederick
  2015-03-22 18:04   ` Mark Brown
  -1 siblings, 1 reply; 19+ messages in thread
From: Fabian Frederick @ 2015-03-18 16:48 UTC (permalink / raw)
  To: linux-kernel
  Cc: Fabian Frederick, Bard Liao, Oder Chiou, Liam Girdwood,
	Mark Brown, Jaroslav Kysela, Takashi Iwai, alsa-devel

of_device_id is always used as const.
(See driver.of_match_table and open firmware functions)

Signed-off-by: Fabian Frederick <fabf@skynet.be>
---
 sound/soc/codecs/rt5631.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sound/soc/codecs/rt5631.c b/sound/soc/codecs/rt5631.c
index c618527..2c10d77 100644
--- a/sound/soc/codecs/rt5631.c
+++ b/sound/soc/codecs/rt5631.c
@@ -1675,7 +1675,7 @@ static const struct i2c_device_id rt5631_i2c_id[] = {
 MODULE_DEVICE_TABLE(i2c, rt5631_i2c_id);
 
 #ifdef CONFIG_OF
-static struct of_device_id rt5631_i2c_dt_ids[] = {
+static const struct of_device_id rt5631_i2c_dt_ids[] = {
 	{ .compatible = "realtek,rt5631"},
 	{ .compatible = "realtek,alc5631"},
 	{ }
-- 
1.9.1


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

* [PATCH 5/7 linux-next] ASoC: ak4554: constify of_device_id array
  2015-03-18 16:48 ` Fabian Frederick
                   ` (4 preceding siblings ...)
  (?)
@ 2015-03-18 16:49 ` Fabian Frederick
  2015-03-22 18:05   ` Mark Brown
  -1 siblings, 1 reply; 19+ messages in thread
From: Fabian Frederick @ 2015-03-18 16:49 UTC (permalink / raw)
  To: linux-kernel
  Cc: Fabian Frederick, Liam Girdwood, Mark Brown, Jaroslav Kysela,
	Takashi Iwai, alsa-devel

of_device_id is always used as const.
(See driver.of_match_table and open firmware functions)

Signed-off-by: Fabian Frederick <fabf@skynet.be>
---
 sound/soc/codecs/ak4554.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sound/soc/codecs/ak4554.c b/sound/soc/codecs/ak4554.c
index 16ce9f9..298dedc 100644
--- a/sound/soc/codecs/ak4554.c
+++ b/sound/soc/codecs/ak4554.c
@@ -84,7 +84,7 @@ static int ak4554_soc_remove(struct platform_device *pdev)
 	return 0;
 }
 
-static struct of_device_id ak4554_of_match[] = {
+static const struct of_device_id ak4554_of_match[] = {
 	{ .compatible = "asahi-kasei,ak4554" },
 	{},
 };
-- 
1.9.1


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

* [PATCH 6/7 linux-next] ASoC: fsi: constify of_device_id array
  2015-03-18 16:48 ` Fabian Frederick
                   ` (5 preceding siblings ...)
  (?)
@ 2015-03-18 16:49 ` Fabian Frederick
  2015-03-22 18:05   ` Mark Brown
  -1 siblings, 1 reply; 19+ messages in thread
From: Fabian Frederick @ 2015-03-18 16:49 UTC (permalink / raw)
  To: linux-kernel
  Cc: Fabian Frederick, Liam Girdwood, Mark Brown, Jaroslav Kysela,
	Takashi Iwai, alsa-devel

of_device_id is always used as const.
(See driver.of_match_table and open firmware functions)

Signed-off-by: Fabian Frederick <fabf@skynet.be>
---
 sound/soc/sh/fsi.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/sound/soc/sh/fsi.c b/sound/soc/sh/fsi.c
index bb20550..b593e28 100644
--- a/sound/soc/sh/fsi.c
+++ b/sound/soc/sh/fsi.c
@@ -1882,7 +1882,7 @@ static void fsi_handler_init(struct fsi_priv *fsi,
 	}
 }
 
-static struct of_device_id fsi_of_match[];
+static const struct of_device_id fsi_of_match[];
 static int fsi_probe(struct platform_device *pdev)
 {
 	struct fsi_master *master;
@@ -2100,7 +2100,7 @@ static struct fsi_core fsi2_core = {
 	.b_mclk	= B_MST_CTLR,
 };
 
-static struct of_device_id fsi_of_match[] = {
+static const struct of_device_id fsi_of_match[] = {
 	{ .compatible = "renesas,sh_fsi",	.data = &fsi1_core},
 	{ .compatible = "renesas,sh_fsi2",	.data = &fsi2_core},
 	{},
-- 
1.9.1


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

* [PATCH 7/7 linux-next] ASoC: rsnd: constify of_device_id array
  2015-03-18 16:48 ` Fabian Frederick
                   ` (6 preceding siblings ...)
  (?)
@ 2015-03-18 16:49 ` Fabian Frederick
  2015-03-22 18:06   ` Mark Brown
  -1 siblings, 1 reply; 19+ messages in thread
From: Fabian Frederick @ 2015-03-18 16:49 UTC (permalink / raw)
  To: linux-kernel
  Cc: Fabian Frederick, Liam Girdwood, Mark Brown, Jaroslav Kysela,
	Takashi Iwai, alsa-devel

of_device_id is always used as const.
(See driver.of_match_table and open firmware functions)

Signed-off-by: Fabian Frederick <fabf@skynet.be>
---
 sound/soc/sh/rcar/core.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sound/soc/sh/rcar/core.c b/sound/soc/sh/rcar/core.c
index be03474..e9bac7c 100644
--- a/sound/soc/sh/rcar/core.c
+++ b/sound/soc/sh/rcar/core.c
@@ -107,7 +107,7 @@ static struct rsnd_of_data rsnd_of_data_gen2 = {
 	.flags = RSND_GEN2,
 };
 
-static struct of_device_id rsnd_of_match[] = {
+static const struct of_device_id rsnd_of_match[] = {
 	{ .compatible = "renesas,rcar_sound-gen1", .data = &rsnd_of_data_gen1 },
 	{ .compatible = "renesas,rcar_sound-gen2", .data = &rsnd_of_data_gen2 },
 	{},
-- 
1.9.1


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

* Re: [alsa-devel] [PATCH 1/7 linux-next] ALSA: aoa: constify of_device_id array
  2015-03-18 16:48   ` Fabian Frederick
@ 2015-03-19 11:12     ` Takashi Iwai
  -1 siblings, 0 replies; 19+ messages in thread
From: Takashi Iwai @ 2015-03-19 11:12 UTC (permalink / raw)
  To: Fabian Frederick; +Cc: linux-kernel, alsa-devel, Johannes Berg, linuxppc-dev

At Wed, 18 Mar 2015 17:48:56 +0100,
Fabian Frederick wrote:
> 
> of_device_id is always used as const.
> (See driver.of_match_table and open firmware functions)
> 
> Signed-off-by: Fabian Frederick <fabf@skynet.be>

Thanks, applied this one.
The rest ASoC patches are left to Mark.


Takashi

> ---
>  sound/aoa/soundbus/i2sbus/core.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/sound/aoa/soundbus/i2sbus/core.c b/sound/aoa/soundbus/i2sbus/core.c
> index b9737fa..1cbf210 100644
> --- a/sound/aoa/soundbus/i2sbus/core.c
> +++ b/sound/aoa/soundbus/i2sbus/core.c
> @@ -31,7 +31,7 @@ module_param(force, int, 0444);
>  MODULE_PARM_DESC(force, "Force loading i2sbus even when"
>  			" no layout-id property is present");
>  
> -static struct of_device_id i2sbus_match[] = {
> +static const struct of_device_id i2sbus_match[] = {
>  	{ .name = "i2s" },
>  	{ }
>  };
> -- 
> 1.9.1
> 
> _______________________________________________
> Alsa-devel mailing list
> Alsa-devel@alsa-project.org
> http://mailman.alsa-project.org/mailman/listinfo/alsa-devel
> 

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

* Re: [alsa-devel] [PATCH 1/7 linux-next] ALSA: aoa: constify of_device_id array
@ 2015-03-19 11:12     ` Takashi Iwai
  0 siblings, 0 replies; 19+ messages in thread
From: Takashi Iwai @ 2015-03-19 11:12 UTC (permalink / raw)
  To: Fabian Frederick; +Cc: Johannes Berg, alsa-devel, linuxppc-dev, linux-kernel

At Wed, 18 Mar 2015 17:48:56 +0100,
Fabian Frederick wrote:
> 
> of_device_id is always used as const.
> (See driver.of_match_table and open firmware functions)
> 
> Signed-off-by: Fabian Frederick <fabf@skynet.be>

Thanks, applied this one.
The rest ASoC patches are left to Mark.


Takashi

> ---
>  sound/aoa/soundbus/i2sbus/core.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/sound/aoa/soundbus/i2sbus/core.c b/sound/aoa/soundbus/i2sbus/core.c
> index b9737fa..1cbf210 100644
> --- a/sound/aoa/soundbus/i2sbus/core.c
> +++ b/sound/aoa/soundbus/i2sbus/core.c
> @@ -31,7 +31,7 @@ module_param(force, int, 0444);
>  MODULE_PARM_DESC(force, "Force loading i2sbus even when"
>  			" no layout-id property is present");
>  
> -static struct of_device_id i2sbus_match[] = {
> +static const struct of_device_id i2sbus_match[] = {
>  	{ .name = "i2s" },
>  	{ }
>  };
> -- 
> 1.9.1
> 
> _______________________________________________
> Alsa-devel mailing list
> Alsa-devel@alsa-project.org
> http://mailman.alsa-project.org/mailman/listinfo/alsa-devel
> 

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

* Re: [PATCH 2/7 linux-next] ASoC: fsl: constify of_device_id array
  2015-03-18 16:48 ` [PATCH 2/7 linux-next] ASoC: fsl: " Fabian Frederick
@ 2015-03-22 18:03   ` Mark Brown
  0 siblings, 0 replies; 19+ messages in thread
From: Mark Brown @ 2015-03-22 18:03 UTC (permalink / raw)
  To: Fabian Frederick
  Cc: linux-kernel, Liam Girdwood, Jaroslav Kysela, Takashi Iwai, alsa-devel

[-- Attachment #1: Type: text/plain, Size: 182 bytes --]

On Wed, Mar 18, 2015 at 05:48:57PM +0100, Fabian Frederick wrote:
> of_device_id is always used as const.
> (See driver.of_match_table and open firmware functions)

Applied, thanks.

[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 473 bytes --]

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

* Re: [PATCH 3/7 linux-next] ASoC: kirkwood: constify of_device_id array
  2015-03-18 16:48 ` [PATCH 3/7 linux-next] ASoC: kirkwood: " Fabian Frederick
@ 2015-03-22 18:03   ` Mark Brown
  0 siblings, 0 replies; 19+ messages in thread
From: Mark Brown @ 2015-03-22 18:03 UTC (permalink / raw)
  To: Fabian Frederick
  Cc: linux-kernel, Liam Girdwood, Jaroslav Kysela, Takashi Iwai, alsa-devel

[-- Attachment #1: Type: text/plain, Size: 182 bytes --]

On Wed, Mar 18, 2015 at 05:48:58PM +0100, Fabian Frederick wrote:
> of_device_id is always used as const.
> (See driver.of_match_table and open firmware functions)

Applied, thanks.

[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 473 bytes --]

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

* Re: [PATCH 4/7 linux-next] ASoC: rt5631: constify of_device_id array
  2015-03-18 16:48 ` [PATCH 4/7 linux-next] ASoC: rt5631: " Fabian Frederick
@ 2015-03-22 18:04   ` Mark Brown
  0 siblings, 0 replies; 19+ messages in thread
From: Mark Brown @ 2015-03-22 18:04 UTC (permalink / raw)
  To: Fabian Frederick
  Cc: linux-kernel, Bard Liao, Oder Chiou, Liam Girdwood,
	Jaroslav Kysela, Takashi Iwai, alsa-devel

[-- Attachment #1: Type: text/plain, Size: 182 bytes --]

On Wed, Mar 18, 2015 at 05:48:59PM +0100, Fabian Frederick wrote:
> of_device_id is always used as const.
> (See driver.of_match_table and open firmware functions)

Applied, thanks.

[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 473 bytes --]

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

* Re: [PATCH 5/7 linux-next] ASoC: ak4554: constify of_device_id array
  2015-03-18 16:49 ` [PATCH 5/7 linux-next] ASoC: ak4554: " Fabian Frederick
@ 2015-03-22 18:05   ` Mark Brown
  0 siblings, 0 replies; 19+ messages in thread
From: Mark Brown @ 2015-03-22 18:05 UTC (permalink / raw)
  To: Fabian Frederick
  Cc: linux-kernel, Liam Girdwood, Jaroslav Kysela, Takashi Iwai, alsa-devel

[-- Attachment #1: Type: text/plain, Size: 182 bytes --]

On Wed, Mar 18, 2015 at 05:49:00PM +0100, Fabian Frederick wrote:
> of_device_id is always used as const.
> (See driver.of_match_table and open firmware functions)

Applied, thanks.

[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 473 bytes --]

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

* Re: [PATCH 6/7 linux-next] ASoC: fsi: constify of_device_id array
  2015-03-18 16:49 ` [PATCH 6/7 linux-next] ASoC: fsi: " Fabian Frederick
@ 2015-03-22 18:05   ` Mark Brown
  0 siblings, 0 replies; 19+ messages in thread
From: Mark Brown @ 2015-03-22 18:05 UTC (permalink / raw)
  To: Fabian Frederick
  Cc: linux-kernel, Liam Girdwood, Jaroslav Kysela, Takashi Iwai, alsa-devel

[-- Attachment #1: Type: text/plain, Size: 182 bytes --]

On Wed, Mar 18, 2015 at 05:49:01PM +0100, Fabian Frederick wrote:
> of_device_id is always used as const.
> (See driver.of_match_table and open firmware functions)

Applied, thanks.

[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 473 bytes --]

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

* Re: [PATCH 7/7 linux-next] ASoC: rsnd: constify of_device_id array
  2015-03-18 16:49 ` [PATCH 7/7 linux-next] ASoC: rsnd: " Fabian Frederick
@ 2015-03-22 18:06   ` Mark Brown
  0 siblings, 0 replies; 19+ messages in thread
From: Mark Brown @ 2015-03-22 18:06 UTC (permalink / raw)
  To: Fabian Frederick
  Cc: linux-kernel, Liam Girdwood, Jaroslav Kysela, Takashi Iwai, alsa-devel

[-- Attachment #1: Type: text/plain, Size: 182 bytes --]

On Wed, Mar 18, 2015 at 05:49:02PM +0100, Fabian Frederick wrote:
> of_device_id is always used as const.
> (See driver.of_match_table and open firmware functions)

Applied, thanks.

[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 473 bytes --]

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

end of thread, other threads:[~2015-03-23  5:25 UTC | newest]

Thread overview: 19+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-03-18 16:48 [PATCH 0/7 linux-next] sound: constify of_device_id array Fabian Frederick
2015-03-18 16:48 ` Fabian Frederick
2015-03-18 16:48 ` [PATCH 1/7 linux-next] ALSA: aoa: " Fabian Frederick
2015-03-18 16:48   ` Fabian Frederick
2015-03-18 16:48   ` Fabian Frederick
2015-03-19 11:12   ` [alsa-devel] " Takashi Iwai
2015-03-19 11:12     ` Takashi Iwai
2015-03-18 16:48 ` [PATCH 2/7 linux-next] ASoC: fsl: " Fabian Frederick
2015-03-22 18:03   ` Mark Brown
2015-03-18 16:48 ` [PATCH 3/7 linux-next] ASoC: kirkwood: " Fabian Frederick
2015-03-22 18:03   ` Mark Brown
2015-03-18 16:48 ` [PATCH 4/7 linux-next] ASoC: rt5631: " Fabian Frederick
2015-03-22 18:04   ` Mark Brown
2015-03-18 16:49 ` [PATCH 5/7 linux-next] ASoC: ak4554: " Fabian Frederick
2015-03-22 18:05   ` Mark Brown
2015-03-18 16:49 ` [PATCH 6/7 linux-next] ASoC: fsi: " Fabian Frederick
2015-03-22 18:05   ` Mark Brown
2015-03-18 16:49 ` [PATCH 7/7 linux-next] ASoC: rsnd: " Fabian Frederick
2015-03-22 18:06   ` 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.