linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 0/6] ASoC: make snd_pcm_hardware const
@ 2017-08-17 10:16 Bhumika Goyal
  2017-08-17 10:16 ` [PATCH 1/6] ASoC: fsl: " Bhumika Goyal
                   ` (5 more replies)
  0 siblings, 6 replies; 14+ messages in thread
From: Bhumika Goyal @ 2017-08-17 10:16 UTC (permalink / raw)
  To: julia.lawall, timur, nicoleotsuka, Xiubo.Lee, fabio.estevam,
	lgirdwood, broonie, perex, tiwai, plai, bgoswami, alsa-devel,
	linuxppc-dev, linux-kernel
  Cc: Bhumika Goyal

Make these const. Done using Coccinelle

Bhumika Goyal (6):
  ASoC: fsl: make snd_pcm_hardware const
  ASoC: Intel: Atom: make snd_pcm_hardware const
  ASoC: Intel: Skylake: make snd_pcm_hardware const
  ASoC: kirkwood: make snd_pcm_hardware const
  ASoC: sh: make snd_pcm_hardware const
  ASoC: qcom: make snd_pcm_hardware const

 sound/soc/fsl/fsl_asrc_dma.c                 | 2 +-
 sound/soc/fsl/imx-pcm-fiq.c                  | 2 +-
 sound/soc/intel/atom/sst-mfld-platform-pcm.c | 2 +-
 sound/soc/intel/skylake/skl-pcm.c            | 2 +-
 sound/soc/kirkwood/kirkwood-dma.c            | 2 +-
 sound/soc/qcom/lpass-platform.c              | 2 +-
 sound/soc/sh/dma-sh7760.c                    | 2 +-
 sound/soc/sh/fsi.c                           | 2 +-
 sound/soc/sh/rcar/core.c                     | 2 +-
 sound/soc/sh/siu_dai.c                       | 2 +-
 10 files changed, 10 insertions(+), 10 deletions(-)

-- 
1.9.1

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

* [PATCH 1/6] ASoC: fsl: make snd_pcm_hardware const
  2017-08-17 10:16 [PATCH 0/6] ASoC: make snd_pcm_hardware const Bhumika Goyal
@ 2017-08-17 10:16 ` Bhumika Goyal
  2017-08-17 17:13   ` Applied "ASoC: fsl: make snd_pcm_hardware const" to the asoc tree Mark Brown
  2017-08-18  8:11   ` [PATCH 1/6] ASoC: fsl: make snd_pcm_hardware const Nicolin Chen
  2017-08-17 10:16 ` [PATCH 2/6] ASoC: Intel: Atom: " Bhumika Goyal
                   ` (4 subsequent siblings)
  5 siblings, 2 replies; 14+ messages in thread
From: Bhumika Goyal @ 2017-08-17 10:16 UTC (permalink / raw)
  To: julia.lawall, timur, nicoleotsuka, Xiubo.Lee, fabio.estevam,
	lgirdwood, broonie, perex, tiwai, plai, bgoswami, alsa-devel,
	linuxppc-dev, linux-kernel
  Cc: Bhumika Goyal

Make these const as they are only passed as the 2nd argument to the
function snd_soc_set_runtime_hwparams, which is const.
Done using Coccinelle.

Signed-off-by: Bhumika Goyal <bhumirks@gmail.com>
---
 sound/soc/fsl/fsl_asrc_dma.c | 2 +-
 sound/soc/fsl/imx-pcm-fiq.c  | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/sound/soc/fsl/fsl_asrc_dma.c b/sound/soc/fsl/fsl_asrc_dma.c
index 2baf196..e1b97e5 100644
--- a/sound/soc/fsl/fsl_asrc_dma.c
+++ b/sound/soc/fsl/fsl_asrc_dma.c
@@ -20,7 +20,7 @@
 
 #define FSL_ASRC_DMABUF_SIZE	(256 * 1024)
 
-static struct snd_pcm_hardware snd_imx_hardware = {
+static const struct snd_pcm_hardware snd_imx_hardware = {
 	.info = SNDRV_PCM_INFO_INTERLEAVED |
 		SNDRV_PCM_INFO_BLOCK_TRANSFER |
 		SNDRV_PCM_INFO_MMAP |
diff --git a/sound/soc/fsl/imx-pcm-fiq.c b/sound/soc/fsl/imx-pcm-fiq.c
index aef1f78..4e5fefe 100644
--- a/sound/soc/fsl/imx-pcm-fiq.c
+++ b/sound/soc/fsl/imx-pcm-fiq.c
@@ -154,7 +154,7 @@ static snd_pcm_uframes_t snd_imx_pcm_pointer(struct snd_pcm_substream *substream
 	return bytes_to_frames(substream->runtime, iprtd->offset);
 }
 
-static struct snd_pcm_hardware snd_imx_hardware = {
+static const struct snd_pcm_hardware snd_imx_hardware = {
 	.info = SNDRV_PCM_INFO_INTERLEAVED |
 		SNDRV_PCM_INFO_BLOCK_TRANSFER |
 		SNDRV_PCM_INFO_MMAP |
-- 
1.9.1

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

* [PATCH 2/6] ASoC: Intel: Atom: make snd_pcm_hardware const
  2017-08-17 10:16 [PATCH 0/6] ASoC: make snd_pcm_hardware const Bhumika Goyal
  2017-08-17 10:16 ` [PATCH 1/6] ASoC: fsl: " Bhumika Goyal
@ 2017-08-17 10:16 ` Bhumika Goyal
  2017-08-17 17:13   ` Applied "ASoC: Intel: Atom: make snd_pcm_hardware const" to the asoc tree Mark Brown
  2017-08-17 10:16 ` [PATCH 3/6] ASoC: Intel: Skylake: make snd_pcm_hardware const Bhumika Goyal
                   ` (3 subsequent siblings)
  5 siblings, 1 reply; 14+ messages in thread
From: Bhumika Goyal @ 2017-08-17 10:16 UTC (permalink / raw)
  To: julia.lawall, timur, nicoleotsuka, Xiubo.Lee, fabio.estevam,
	lgirdwood, broonie, perex, tiwai, plai, bgoswami, alsa-devel,
	linuxppc-dev, linux-kernel
  Cc: Bhumika Goyal

Make this const as it is only used in a copy operation.
Done using Coccinelle.

Signed-off-by: Bhumika Goyal <bhumirks@gmail.com>
---
 sound/soc/intel/atom/sst-mfld-platform-pcm.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sound/soc/intel/atom/sst-mfld-platform-pcm.c b/sound/soc/intel/atom/sst-mfld-platform-pcm.c
index b272df5..43e7fdd 100644
--- a/sound/soc/intel/atom/sst-mfld-platform-pcm.c
+++ b/sound/soc/intel/atom/sst-mfld-platform-pcm.c
@@ -76,7 +76,7 @@ int sst_unregister_dsp(struct sst_device *dev)
 }
 EXPORT_SYMBOL_GPL(sst_unregister_dsp);
 
-static struct snd_pcm_hardware sst_platform_pcm_hw = {
+static const struct snd_pcm_hardware sst_platform_pcm_hw = {
 	.info =	(SNDRV_PCM_INFO_INTERLEAVED |
 			SNDRV_PCM_INFO_DOUBLE |
 			SNDRV_PCM_INFO_PAUSE |
-- 
1.9.1

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

* [PATCH 3/6] ASoC: Intel: Skylake: make snd_pcm_hardware const
  2017-08-17 10:16 [PATCH 0/6] ASoC: make snd_pcm_hardware const Bhumika Goyal
  2017-08-17 10:16 ` [PATCH 1/6] ASoC: fsl: " Bhumika Goyal
  2017-08-17 10:16 ` [PATCH 2/6] ASoC: Intel: Atom: " Bhumika Goyal
@ 2017-08-17 10:16 ` Bhumika Goyal
  2017-08-17 17:13   ` Applied "ASoC: Intel: Skylake: make snd_pcm_hardware const" to the asoc tree Mark Brown
  2017-08-17 10:16 ` [PATCH 4/6] ASoC: kirkwood: make snd_pcm_hardware const Bhumika Goyal
                   ` (2 subsequent siblings)
  5 siblings, 1 reply; 14+ messages in thread
From: Bhumika Goyal @ 2017-08-17 10:16 UTC (permalink / raw)
  To: julia.lawall, timur, nicoleotsuka, Xiubo.Lee, fabio.estevam,
	lgirdwood, broonie, perex, tiwai, plai, bgoswami, alsa-devel,
	linuxppc-dev, linux-kernel
  Cc: Bhumika Goyal

Make this const as it is only passed as the 2nd argument to the
function snd_soc_set_runtime_hwparams, which is const.
Done using Coccinelle.

Signed-off-by: Bhumika Goyal <bhumirks@gmail.com>
---
 sound/soc/intel/skylake/skl-pcm.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sound/soc/intel/skylake/skl-pcm.c b/sound/soc/intel/skylake/skl-pcm.c
index e98d825..f6c9adb 100644
--- a/sound/soc/intel/skylake/skl-pcm.c
+++ b/sound/soc/intel/skylake/skl-pcm.c
@@ -33,7 +33,7 @@
 #define HDA_STEREO 2
 #define HDA_QUAD 4
 
-static struct snd_pcm_hardware azx_pcm_hw = {
+static const struct snd_pcm_hardware azx_pcm_hw = {
 	.info =			(SNDRV_PCM_INFO_MMAP |
 				 SNDRV_PCM_INFO_INTERLEAVED |
 				 SNDRV_PCM_INFO_BLOCK_TRANSFER |
-- 
1.9.1

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

* [PATCH 4/6] ASoC: kirkwood: make snd_pcm_hardware const
  2017-08-17 10:16 [PATCH 0/6] ASoC: make snd_pcm_hardware const Bhumika Goyal
                   ` (2 preceding siblings ...)
  2017-08-17 10:16 ` [PATCH 3/6] ASoC: Intel: Skylake: make snd_pcm_hardware const Bhumika Goyal
@ 2017-08-17 10:16 ` Bhumika Goyal
  2017-08-17 17:13   ` Applied "ASoC: kirkwood: make snd_pcm_hardware const" to the asoc tree Mark Brown
  2017-08-17 10:16 ` [PATCH 5/6] ASoC: sh: make snd_pcm_hardware const Bhumika Goyal
  2017-08-17 10:16 ` [PATCH 6/6] ASoC: qcom: make snd_pcm_hardware const Bhumika Goyal
  5 siblings, 1 reply; 14+ messages in thread
From: Bhumika Goyal @ 2017-08-17 10:16 UTC (permalink / raw)
  To: julia.lawall, timur, nicoleotsuka, Xiubo.Lee, fabio.estevam,
	lgirdwood, broonie, perex, tiwai, plai, bgoswami, alsa-devel,
	linuxppc-dev, linux-kernel
  Cc: Bhumika Goyal

Make this const as it is either passed as the 2nd argument
to the function snd_soc_set_runtime_hwparams, which is const or used in
a copy operation.
Done using Coccinelle.

Signed-off-by: Bhumika Goyal <bhumirks@gmail.com>
---
 sound/soc/kirkwood/kirkwood-dma.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sound/soc/kirkwood/kirkwood-dma.c b/sound/soc/kirkwood/kirkwood-dma.c
index dafd22e..cf23af1 100644
--- a/sound/soc/kirkwood/kirkwood-dma.c
+++ b/sound/soc/kirkwood/kirkwood-dma.c
@@ -27,7 +27,7 @@ static struct kirkwood_dma_data *kirkwood_priv(struct snd_pcm_substream *subs)
 	return snd_soc_dai_get_drvdata(soc_runtime->cpu_dai);
 }
 
-static struct snd_pcm_hardware kirkwood_dma_snd_hw = {
+static const struct snd_pcm_hardware kirkwood_dma_snd_hw = {
 	.info = SNDRV_PCM_INFO_INTERLEAVED |
 		SNDRV_PCM_INFO_MMAP |
 		SNDRV_PCM_INFO_MMAP_VALID |
-- 
1.9.1

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

* [PATCH 5/6] ASoC: sh: make snd_pcm_hardware const
  2017-08-17 10:16 [PATCH 0/6] ASoC: make snd_pcm_hardware const Bhumika Goyal
                   ` (3 preceding siblings ...)
  2017-08-17 10:16 ` [PATCH 4/6] ASoC: kirkwood: make snd_pcm_hardware const Bhumika Goyal
@ 2017-08-17 10:16 ` Bhumika Goyal
  2017-08-17 17:13   ` Applied "ASoC: sh: make snd_pcm_hardware const" to the asoc tree Mark Brown
  2017-08-17 10:16 ` [PATCH 6/6] ASoC: qcom: make snd_pcm_hardware const Bhumika Goyal
  5 siblings, 1 reply; 14+ messages in thread
From: Bhumika Goyal @ 2017-08-17 10:16 UTC (permalink / raw)
  To: julia.lawall, timur, nicoleotsuka, Xiubo.Lee, fabio.estevam,
	lgirdwood, broonie, perex, tiwai, plai, bgoswami, alsa-devel,
	linuxppc-dev, linux-kernel
  Cc: Bhumika Goyal

Make these const as they are only passed as the 2nd argument to the
function snd_soc_set_runtime_hwparams, which is const.
Done using Coccinelle.

Signed-off-by: Bhumika Goyal <bhumirks@gmail.com>
---
 sound/soc/sh/dma-sh7760.c | 2 +-
 sound/soc/sh/fsi.c        | 2 +-
 sound/soc/sh/rcar/core.c  | 2 +-
 sound/soc/sh/siu_dai.c    | 2 +-
 4 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/sound/soc/sh/dma-sh7760.c b/sound/soc/sh/dma-sh7760.c
index 35788a6..1e7d417 100644
--- a/sound/soc/sh/dma-sh7760.c
+++ b/sound/soc/sh/dma-sh7760.c
@@ -89,7 +89,7 @@ struct camelot_pcm {
 #define DMABRG_PREALLOC_BUFFER		32 * 1024
 #define DMABRG_PREALLOC_BUFFER_MAX	32 * 1024
 
-static struct snd_pcm_hardware camelot_pcm_hardware = {
+static const struct snd_pcm_hardware camelot_pcm_hardware = {
 	.info = (SNDRV_PCM_INFO_MMAP |
 		SNDRV_PCM_INFO_INTERLEAVED |
 		SNDRV_PCM_INFO_BLOCK_TRANSFER |
diff --git a/sound/soc/sh/fsi.c b/sound/soc/sh/fsi.c
index 7cf0edb..6d3c770 100644
--- a/sound/soc/sh/fsi.c
+++ b/sound/soc/sh/fsi.c
@@ -1710,7 +1710,7 @@ static int fsi_dai_hw_params(struct snd_pcm_substream *substream,
  *		pcm ops
  */
 
-static struct snd_pcm_hardware fsi_pcm_hardware = {
+static const struct snd_pcm_hardware fsi_pcm_hardware = {
 	.info =		SNDRV_PCM_INFO_INTERLEAVED	|
 			SNDRV_PCM_INFO_MMAP		|
 			SNDRV_PCM_INFO_MMAP_VALID,
diff --git a/sound/soc/sh/rcar/core.c b/sound/soc/sh/rcar/core.c
index df39831..1071332 100644
--- a/sound/soc/sh/rcar/core.c
+++ b/sound/soc/sh/rcar/core.c
@@ -843,7 +843,7 @@ static int rsnd_soc_hw_rule_channels(struct snd_pcm_hw_params *params,
 				ir, &ic);
 }
 
-static struct snd_pcm_hardware rsnd_pcm_hardware = {
+static const struct snd_pcm_hardware rsnd_pcm_hardware = {
 	.info =		SNDRV_PCM_INFO_INTERLEAVED	|
 			SNDRV_PCM_INFO_MMAP		|
 			SNDRV_PCM_INFO_MMAP_VALID,
diff --git a/sound/soc/sh/siu_dai.c b/sound/soc/sh/siu_dai.c
index 4a22aad..1605029 100644
--- a/sound/soc/sh/siu_dai.c
+++ b/sound/soc/sh/siu_dai.c
@@ -333,7 +333,7 @@ static void siu_dai_spbstop(struct siu_port *port_info)
 /*		API functions		*/
 
 /* Playback and capture hardware properties are identical */
-static struct snd_pcm_hardware siu_dai_pcm_hw = {
+static const struct snd_pcm_hardware siu_dai_pcm_hw = {
 	.info			= SNDRV_PCM_INFO_INTERLEAVED,
 	.formats		= SNDRV_PCM_FMTBIT_S16,
 	.rates			= SNDRV_PCM_RATE_8000_48000,
-- 
1.9.1

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

* [PATCH 6/6] ASoC: qcom: make snd_pcm_hardware const
  2017-08-17 10:16 [PATCH 0/6] ASoC: make snd_pcm_hardware const Bhumika Goyal
                   ` (4 preceding siblings ...)
  2017-08-17 10:16 ` [PATCH 5/6] ASoC: sh: make snd_pcm_hardware const Bhumika Goyal
@ 2017-08-17 10:16 ` Bhumika Goyal
  2017-08-17 17:13   ` Applied "ASoC: qcom: make snd_pcm_hardware const" to the asoc tree Mark Brown
  5 siblings, 1 reply; 14+ messages in thread
From: Bhumika Goyal @ 2017-08-17 10:16 UTC (permalink / raw)
  To: julia.lawall, timur, nicoleotsuka, Xiubo.Lee, fabio.estevam,
	lgirdwood, broonie, perex, tiwai, plai, bgoswami, alsa-devel,
	linuxppc-dev, linux-kernel
  Cc: Bhumika Goyal

Make this const as it is either passed as the 2nd argument
to the function snd_soc_set_runtime_hwparams, which is const or used
in a copy operation.
Done using Coccinelle.

Signed-off-by: Bhumika Goyal <bhumirks@gmail.com>
---
 sound/soc/qcom/lpass-platform.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sound/soc/qcom/lpass-platform.c b/sound/soc/qcom/lpass-platform.c
index fb3576a..e1945e1 100644
--- a/sound/soc/qcom/lpass-platform.c
+++ b/sound/soc/qcom/lpass-platform.c
@@ -32,7 +32,7 @@ struct lpass_pcm_data {
 #define LPASS_PLATFORM_BUFFER_SIZE	(16 * 1024)
 #define LPASS_PLATFORM_PERIODS		2
 
-static struct snd_pcm_hardware lpass_platform_pcm_hardware = {
+static const struct snd_pcm_hardware lpass_platform_pcm_hardware = {
 	.info			=	SNDRV_PCM_INFO_MMAP |
 					SNDRV_PCM_INFO_MMAP_VALID |
 					SNDRV_PCM_INFO_INTERLEAVED |
-- 
1.9.1

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

* Applied "ASoC: Intel: Skylake: make snd_pcm_hardware const" to the asoc tree
  2017-08-17 10:16 ` [PATCH 3/6] ASoC: Intel: Skylake: make snd_pcm_hardware const Bhumika Goyal
@ 2017-08-17 17:13   ` Mark Brown
  0 siblings, 0 replies; 14+ messages in thread
From: Mark Brown @ 2017-08-17 17:13 UTC (permalink / raw)
  To: Bhumika Goyal
  Cc: Mark Brown, julia.lawall, timur, nicoleotsuka, Xiubo.Lee,
	fabio.estevam, lgirdwood, broonie, perex, tiwai, plai, bgoswami,
	alsa-devel, linuxppc-dev, linux-kernel, alsa-devel

The patch

   ASoC: Intel: Skylake: make snd_pcm_hardware const

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 8df397ff0e281d5324d4b7a7e9fa56c4188e0a66 Mon Sep 17 00:00:00 2001
From: Bhumika Goyal <bhumirks@gmail.com>
Date: Thu, 17 Aug 2017 15:46:09 +0530
Subject: [PATCH] ASoC: Intel: Skylake: make snd_pcm_hardware const

Make this const as it is only passed as the 2nd argument to the
function snd_soc_set_runtime_hwparams, which is const.
Done using Coccinelle.

Signed-off-by: Bhumika Goyal <bhumirks@gmail.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
---
 sound/soc/intel/skylake/skl-pcm.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sound/soc/intel/skylake/skl-pcm.c b/sound/soc/intel/skylake/skl-pcm.c
index e98d8252a026..f6c9adb6faa2 100644
--- a/sound/soc/intel/skylake/skl-pcm.c
+++ b/sound/soc/intel/skylake/skl-pcm.c
@@ -33,7 +33,7 @@
 #define HDA_STEREO 2
 #define HDA_QUAD 4
 
-static struct snd_pcm_hardware azx_pcm_hw = {
+static const struct snd_pcm_hardware azx_pcm_hw = {
 	.info =			(SNDRV_PCM_INFO_MMAP |
 				 SNDRV_PCM_INFO_INTERLEAVED |
 				 SNDRV_PCM_INFO_BLOCK_TRANSFER |
-- 
2.13.3

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

* Applied "ASoC: Intel: Atom: make snd_pcm_hardware const" to the asoc tree
  2017-08-17 10:16 ` [PATCH 2/6] ASoC: Intel: Atom: " Bhumika Goyal
@ 2017-08-17 17:13   ` Mark Brown
  0 siblings, 0 replies; 14+ messages in thread
From: Mark Brown @ 2017-08-17 17:13 UTC (permalink / raw)
  To: Bhumika Goyal
  Cc: Mark Brown, julia.lawall, timur, nicoleotsuka, Xiubo.Lee,
	fabio.estevam, lgirdwood, broonie, perex, tiwai, plai, bgoswami,
	alsa-devel, linuxppc-dev, linux-kernel, alsa-devel

The patch

   ASoC: Intel: Atom: make snd_pcm_hardware const

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 a7468e478a95db31c0f64e8497fadd9df5c49789 Mon Sep 17 00:00:00 2001
From: Bhumika Goyal <bhumirks@gmail.com>
Date: Thu, 17 Aug 2017 15:46:08 +0530
Subject: [PATCH] ASoC: Intel: Atom: make snd_pcm_hardware const

Make this const as it is only used in a copy operation.
Done using Coccinelle.

Signed-off-by: Bhumika Goyal <bhumirks@gmail.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
---
 sound/soc/intel/atom/sst-mfld-platform-pcm.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sound/soc/intel/atom/sst-mfld-platform-pcm.c b/sound/soc/intel/atom/sst-mfld-platform-pcm.c
index b272df5ce0e8..43e7fdd19f29 100644
--- a/sound/soc/intel/atom/sst-mfld-platform-pcm.c
+++ b/sound/soc/intel/atom/sst-mfld-platform-pcm.c
@@ -76,7 +76,7 @@ int sst_unregister_dsp(struct sst_device *dev)
 }
 EXPORT_SYMBOL_GPL(sst_unregister_dsp);
 
-static struct snd_pcm_hardware sst_platform_pcm_hw = {
+static const struct snd_pcm_hardware sst_platform_pcm_hw = {
 	.info =	(SNDRV_PCM_INFO_INTERLEAVED |
 			SNDRV_PCM_INFO_DOUBLE |
 			SNDRV_PCM_INFO_PAUSE |
-- 
2.13.3

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

* Applied "ASoC: qcom: make snd_pcm_hardware const" to the asoc tree
  2017-08-17 10:16 ` [PATCH 6/6] ASoC: qcom: make snd_pcm_hardware const Bhumika Goyal
@ 2017-08-17 17:13   ` Mark Brown
  0 siblings, 0 replies; 14+ messages in thread
From: Mark Brown @ 2017-08-17 17:13 UTC (permalink / raw)
  To: Bhumika Goyal
  Cc: Mark Brown, julia.lawall, timur, nicoleotsuka, Xiubo.Lee,
	fabio.estevam, lgirdwood, broonie, perex, tiwai, plai, bgoswami,
	alsa-devel, linuxppc-dev, linux-kernel, alsa-devel

The patch

   ASoC: qcom: make snd_pcm_hardware const

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 193e25e1fe822f30a02aa9bf99880345eb242d35 Mon Sep 17 00:00:00 2001
From: Bhumika Goyal <bhumirks@gmail.com>
Date: Thu, 17 Aug 2017 15:46:12 +0530
Subject: [PATCH] ASoC: qcom: make snd_pcm_hardware const

Make this const as it is either passed as the 2nd argument
to the function snd_soc_set_runtime_hwparams, which is const or used
in a copy operation.
Done using Coccinelle.

Signed-off-by: Bhumika Goyal <bhumirks@gmail.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
---
 sound/soc/qcom/lpass-platform.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sound/soc/qcom/lpass-platform.c b/sound/soc/qcom/lpass-platform.c
index fb3576af7911..e1945e1772cd 100644
--- a/sound/soc/qcom/lpass-platform.c
+++ b/sound/soc/qcom/lpass-platform.c
@@ -32,7 +32,7 @@ struct lpass_pcm_data {
 #define LPASS_PLATFORM_BUFFER_SIZE	(16 * 1024)
 #define LPASS_PLATFORM_PERIODS		2
 
-static struct snd_pcm_hardware lpass_platform_pcm_hardware = {
+static const struct snd_pcm_hardware lpass_platform_pcm_hardware = {
 	.info			=	SNDRV_PCM_INFO_MMAP |
 					SNDRV_PCM_INFO_MMAP_VALID |
 					SNDRV_PCM_INFO_INTERLEAVED |
-- 
2.13.3

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

* Applied "ASoC: sh: make snd_pcm_hardware const" to the asoc tree
  2017-08-17 10:16 ` [PATCH 5/6] ASoC: sh: make snd_pcm_hardware const Bhumika Goyal
@ 2017-08-17 17:13   ` Mark Brown
  0 siblings, 0 replies; 14+ messages in thread
From: Mark Brown @ 2017-08-17 17:13 UTC (permalink / raw)
  To: Bhumika Goyal
  Cc: Mark Brown, julia.lawall, timur, nicoleotsuka, Xiubo.Lee,
	fabio.estevam, lgirdwood, broonie, perex, tiwai, plai, bgoswami,
	alsa-devel, linuxppc-dev, linux-kernel, alsa-devel

The patch

   ASoC: sh: make snd_pcm_hardware const

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 5c2e035e69ffff4c8b3f0a2ddfefa102ad9d9d42 Mon Sep 17 00:00:00 2001
From: Bhumika Goyal <bhumirks@gmail.com>
Date: Thu, 17 Aug 2017 15:46:11 +0530
Subject: [PATCH] ASoC: sh: make snd_pcm_hardware const

Make these const as they are only passed as the 2nd argument to the
function snd_soc_set_runtime_hwparams, which is const.
Done using Coccinelle.

Signed-off-by: Bhumika Goyal <bhumirks@gmail.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
---
 sound/soc/sh/dma-sh7760.c | 2 +-
 sound/soc/sh/fsi.c        | 2 +-
 sound/soc/sh/rcar/core.c  | 2 +-
 sound/soc/sh/siu_dai.c    | 2 +-
 4 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/sound/soc/sh/dma-sh7760.c b/sound/soc/sh/dma-sh7760.c
index 35788a6db963..1e7d417b53ef 100644
--- a/sound/soc/sh/dma-sh7760.c
+++ b/sound/soc/sh/dma-sh7760.c
@@ -89,7 +89,7 @@ struct camelot_pcm {
 #define DMABRG_PREALLOC_BUFFER		32 * 1024
 #define DMABRG_PREALLOC_BUFFER_MAX	32 * 1024
 
-static struct snd_pcm_hardware camelot_pcm_hardware = {
+static const struct snd_pcm_hardware camelot_pcm_hardware = {
 	.info = (SNDRV_PCM_INFO_MMAP |
 		SNDRV_PCM_INFO_INTERLEAVED |
 		SNDRV_PCM_INFO_BLOCK_TRANSFER |
diff --git a/sound/soc/sh/fsi.c b/sound/soc/sh/fsi.c
index 5d7d9fe8bc98..39ec772912d5 100644
--- a/sound/soc/sh/fsi.c
+++ b/sound/soc/sh/fsi.c
@@ -1710,7 +1710,7 @@ static const struct snd_soc_dai_ops fsi_dai_ops = {
  *		pcm ops
  */
 
-static struct snd_pcm_hardware fsi_pcm_hardware = {
+static const struct snd_pcm_hardware fsi_pcm_hardware = {
 	.info =		SNDRV_PCM_INFO_INTERLEAVED	|
 			SNDRV_PCM_INFO_MMAP		|
 			SNDRV_PCM_INFO_MMAP_VALID,
diff --git a/sound/soc/sh/rcar/core.c b/sound/soc/sh/rcar/core.c
index df39831b8e8f..107133297e8d 100644
--- a/sound/soc/sh/rcar/core.c
+++ b/sound/soc/sh/rcar/core.c
@@ -843,7 +843,7 @@ static int rsnd_soc_hw_rule_channels(struct snd_pcm_hw_params *params,
 				ir, &ic);
 }
 
-static struct snd_pcm_hardware rsnd_pcm_hardware = {
+static const struct snd_pcm_hardware rsnd_pcm_hardware = {
 	.info =		SNDRV_PCM_INFO_INTERLEAVED	|
 			SNDRV_PCM_INFO_MMAP		|
 			SNDRV_PCM_INFO_MMAP_VALID,
diff --git a/sound/soc/sh/siu_dai.c b/sound/soc/sh/siu_dai.c
index 4a22aadac294..160502947da2 100644
--- a/sound/soc/sh/siu_dai.c
+++ b/sound/soc/sh/siu_dai.c
@@ -333,7 +333,7 @@ static void siu_dai_spbstop(struct siu_port *port_info)
 /*		API functions		*/
 
 /* Playback and capture hardware properties are identical */
-static struct snd_pcm_hardware siu_dai_pcm_hw = {
+static const struct snd_pcm_hardware siu_dai_pcm_hw = {
 	.info			= SNDRV_PCM_INFO_INTERLEAVED,
 	.formats		= SNDRV_PCM_FMTBIT_S16,
 	.rates			= SNDRV_PCM_RATE_8000_48000,
-- 
2.13.3

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

* Applied "ASoC: kirkwood: make snd_pcm_hardware const" to the asoc tree
  2017-08-17 10:16 ` [PATCH 4/6] ASoC: kirkwood: make snd_pcm_hardware const Bhumika Goyal
@ 2017-08-17 17:13   ` Mark Brown
  0 siblings, 0 replies; 14+ messages in thread
From: Mark Brown @ 2017-08-17 17:13 UTC (permalink / raw)
  To: Bhumika Goyal
  Cc: Mark Brown, julia.lawall, timur, nicoleotsuka, Xiubo.Lee,
	fabio.estevam, lgirdwood, broonie, perex, tiwai, plai, bgoswami,
	alsa-devel, linuxppc-dev, linux-kernel, alsa-devel

The patch

   ASoC: kirkwood: make snd_pcm_hardware const

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 636d7e289c0a59dd3febfe6a2e7e5bd56eaa91b8 Mon Sep 17 00:00:00 2001
From: Bhumika Goyal <bhumirks@gmail.com>
Date: Thu, 17 Aug 2017 15:46:10 +0530
Subject: [PATCH] ASoC: kirkwood: make snd_pcm_hardware const

Make this const as it is either passed as the 2nd argument
to the function snd_soc_set_runtime_hwparams, which is const or used in
a copy operation.
Done using Coccinelle.

Signed-off-by: Bhumika Goyal <bhumirks@gmail.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
---
 sound/soc/kirkwood/kirkwood-dma.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sound/soc/kirkwood/kirkwood-dma.c b/sound/soc/kirkwood/kirkwood-dma.c
index dafd22e874e9..cf23af159acf 100644
--- a/sound/soc/kirkwood/kirkwood-dma.c
+++ b/sound/soc/kirkwood/kirkwood-dma.c
@@ -27,7 +27,7 @@ static struct kirkwood_dma_data *kirkwood_priv(struct snd_pcm_substream *subs)
 	return snd_soc_dai_get_drvdata(soc_runtime->cpu_dai);
 }
 
-static struct snd_pcm_hardware kirkwood_dma_snd_hw = {
+static const struct snd_pcm_hardware kirkwood_dma_snd_hw = {
 	.info = SNDRV_PCM_INFO_INTERLEAVED |
 		SNDRV_PCM_INFO_MMAP |
 		SNDRV_PCM_INFO_MMAP_VALID |
-- 
2.13.3

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

* Applied "ASoC: fsl: make snd_pcm_hardware const" to the asoc tree
  2017-08-17 10:16 ` [PATCH 1/6] ASoC: fsl: " Bhumika Goyal
@ 2017-08-17 17:13   ` Mark Brown
  2017-08-18  8:11   ` [PATCH 1/6] ASoC: fsl: make snd_pcm_hardware const Nicolin Chen
  1 sibling, 0 replies; 14+ messages in thread
From: Mark Brown @ 2017-08-17 17:13 UTC (permalink / raw)
  To: Bhumika Goyal
  Cc: Mark Brown, julia.lawall, timur, nicoleotsuka, Xiubo.Lee,
	fabio.estevam, lgirdwood, broonie, perex, tiwai, plai, bgoswami,
	alsa-devel, linuxppc-dev, linux-kernel, alsa-devel

The patch

   ASoC: fsl: make snd_pcm_hardware const

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 f77bb3b778e85d3477a9e3e0236545663f16793e Mon Sep 17 00:00:00 2001
From: Bhumika Goyal <bhumirks@gmail.com>
Date: Thu, 17 Aug 2017 15:46:07 +0530
Subject: [PATCH] ASoC: fsl: make snd_pcm_hardware const

Make these const as they are only passed as the 2nd argument to the
function snd_soc_set_runtime_hwparams, which is const.
Done using Coccinelle.

Signed-off-by: Bhumika Goyal <bhumirks@gmail.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
---
 sound/soc/fsl/fsl_asrc_dma.c | 2 +-
 sound/soc/fsl/imx-pcm-fiq.c  | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/sound/soc/fsl/fsl_asrc_dma.c b/sound/soc/fsl/fsl_asrc_dma.c
index 2baf19608bd0..e1b97e59275a 100644
--- a/sound/soc/fsl/fsl_asrc_dma.c
+++ b/sound/soc/fsl/fsl_asrc_dma.c
@@ -20,7 +20,7 @@
 
 #define FSL_ASRC_DMABUF_SIZE	(256 * 1024)
 
-static struct snd_pcm_hardware snd_imx_hardware = {
+static const struct snd_pcm_hardware snd_imx_hardware = {
 	.info = SNDRV_PCM_INFO_INTERLEAVED |
 		SNDRV_PCM_INFO_BLOCK_TRANSFER |
 		SNDRV_PCM_INFO_MMAP |
diff --git a/sound/soc/fsl/imx-pcm-fiq.c b/sound/soc/fsl/imx-pcm-fiq.c
index aef1f7819c40..4e5fefee111e 100644
--- a/sound/soc/fsl/imx-pcm-fiq.c
+++ b/sound/soc/fsl/imx-pcm-fiq.c
@@ -154,7 +154,7 @@ static snd_pcm_uframes_t snd_imx_pcm_pointer(struct snd_pcm_substream *substream
 	return bytes_to_frames(substream->runtime, iprtd->offset);
 }
 
-static struct snd_pcm_hardware snd_imx_hardware = {
+static const struct snd_pcm_hardware snd_imx_hardware = {
 	.info = SNDRV_PCM_INFO_INTERLEAVED |
 		SNDRV_PCM_INFO_BLOCK_TRANSFER |
 		SNDRV_PCM_INFO_MMAP |
-- 
2.13.3

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

* Re: [PATCH 1/6] ASoC: fsl: make snd_pcm_hardware const
  2017-08-17 10:16 ` [PATCH 1/6] ASoC: fsl: " Bhumika Goyal
  2017-08-17 17:13   ` Applied "ASoC: fsl: make snd_pcm_hardware const" to the asoc tree Mark Brown
@ 2017-08-18  8:11   ` Nicolin Chen
  1 sibling, 0 replies; 14+ messages in thread
From: Nicolin Chen @ 2017-08-18  8:11 UTC (permalink / raw)
  To: Bhumika Goyal
  Cc: julia.lawall, timur, Xiubo.Lee, fabio.estevam, lgirdwood,
	broonie, perex, tiwai, plai, bgoswami, alsa-devel, linuxppc-dev,
	linux-kernel

On Thu, Aug 17, 2017 at 03:46:07PM +0530, Bhumika Goyal wrote:
> Make these const as they are only passed as the 2nd argument to the
> function snd_soc_set_runtime_hwparams, which is const.
> Done using Coccinelle.
> 
> Signed-off-by: Bhumika Goyal <bhumirks@gmail.com>

Acked-by: Nicolin Chen <nicoleotsuka@gmail.com>

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

end of thread, other threads:[~2017-08-18  8:11 UTC | newest]

Thread overview: 14+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-08-17 10:16 [PATCH 0/6] ASoC: make snd_pcm_hardware const Bhumika Goyal
2017-08-17 10:16 ` [PATCH 1/6] ASoC: fsl: " Bhumika Goyal
2017-08-17 17:13   ` Applied "ASoC: fsl: make snd_pcm_hardware const" to the asoc tree Mark Brown
2017-08-18  8:11   ` [PATCH 1/6] ASoC: fsl: make snd_pcm_hardware const Nicolin Chen
2017-08-17 10:16 ` [PATCH 2/6] ASoC: Intel: Atom: " Bhumika Goyal
2017-08-17 17:13   ` Applied "ASoC: Intel: Atom: make snd_pcm_hardware const" to the asoc tree Mark Brown
2017-08-17 10:16 ` [PATCH 3/6] ASoC: Intel: Skylake: make snd_pcm_hardware const Bhumika Goyal
2017-08-17 17:13   ` Applied "ASoC: Intel: Skylake: make snd_pcm_hardware const" to the asoc tree Mark Brown
2017-08-17 10:16 ` [PATCH 4/6] ASoC: kirkwood: make snd_pcm_hardware const Bhumika Goyal
2017-08-17 17:13   ` Applied "ASoC: kirkwood: make snd_pcm_hardware const" to the asoc tree Mark Brown
2017-08-17 10:16 ` [PATCH 5/6] ASoC: sh: make snd_pcm_hardware const Bhumika Goyal
2017-08-17 17:13   ` Applied "ASoC: sh: make snd_pcm_hardware const" to the asoc tree Mark Brown
2017-08-17 10:16 ` [PATCH 6/6] ASoC: qcom: make snd_pcm_hardware const Bhumika Goyal
2017-08-17 17:13   ` Applied "ASoC: qcom: make snd_pcm_hardware const" 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).