linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 0/2] ASoC: make snd_soc_dai_driver and snd_soc_component_driver const
@ 2017-08-16 17:15 Bhumika Goyal
  2017-08-16 17:15 ` [PATCH 1/2] ASoC: bcm: make snd_soc_dai_driver const Bhumika Goyal
  2017-08-16 17:15 ` [PATCH 2/2] ASoC: codecs: make snd_soc_dai_driver and snd_soc_component_driver const Bhumika Goyal
  0 siblings, 2 replies; 5+ messages in thread
From: Bhumika Goyal @ 2017-08-16 17:15 UTC (permalink / raw)
  To: julia.lawall, lgirdwood, broonie, perex, tiwai, rjui, sbranden,
	jonmason, bcm-kernel-feedback-list, alsa-devel, linux-kernel,
	linux-arm-kernel
  Cc: Bhumika Goyal

Make these const.

Bhumika Goyal (2):
  ASoC: bcm: make snd_soc_dai_driver const
  ASoC: codecs: make snd_soc_dai_driver and snd_soc_component_driver
    const

 sound/soc/bcm/cygnus-ssp.c    | 2 +-
 sound/soc/codecs/hdmi-codec.c | 2 +-
 sound/soc/codecs/lm4857.c     | 2 +-
 sound/soc/codecs/max9768.c    | 2 +-
 4 files changed, 4 insertions(+), 4 deletions(-)

-- 
1.9.1

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

* [PATCH 1/2] ASoC: bcm: make snd_soc_dai_driver const
  2017-08-16 17:15 [PATCH 0/2] ASoC: make snd_soc_dai_driver and snd_soc_component_driver const Bhumika Goyal
@ 2017-08-16 17:15 ` Bhumika Goyal
  2017-08-17 17:12   ` Applied "ASoC: bcm: make snd_soc_dai_driver const" to the asoc tree Mark Brown
  2017-08-16 17:15 ` [PATCH 2/2] ASoC: codecs: make snd_soc_dai_driver and snd_soc_component_driver const Bhumika Goyal
  1 sibling, 1 reply; 5+ messages in thread
From: Bhumika Goyal @ 2017-08-16 17:15 UTC (permalink / raw)
  To: julia.lawall, lgirdwood, broonie, perex, tiwai, rjui, sbranden,
	jonmason, bcm-kernel-feedback-list, alsa-devel, linux-kernel,
	linux-arm-kernel
  Cc: Bhumika Goyal

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

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

diff --git a/sound/soc/bcm/cygnus-ssp.c b/sound/soc/bcm/cygnus-ssp.c
index 1a57a4e..15c438f 100644
--- a/sound/soc/bcm/cygnus-ssp.c
+++ b/sound/soc/bcm/cygnus-ssp.c
@@ -1165,7 +1165,7 @@ static int cygnus_ssp_resume(struct snd_soc_dai *cpu_dai)
 	INIT_CPU_DAI(2),
 };
 
-static struct snd_soc_dai_driver cygnus_spdif_dai_info = {
+static const struct snd_soc_dai_driver cygnus_spdif_dai_info = {
 	.name = "cygnus-spdif",
 	.playback = {
 		.channels_min = 2,
-- 
1.9.1

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

* [PATCH 2/2] ASoC: codecs: make snd_soc_dai_driver and snd_soc_component_driver const
  2017-08-16 17:15 [PATCH 0/2] ASoC: make snd_soc_dai_driver and snd_soc_component_driver const Bhumika Goyal
  2017-08-16 17:15 ` [PATCH 1/2] ASoC: bcm: make snd_soc_dai_driver const Bhumika Goyal
@ 2017-08-16 17:15 ` Bhumika Goyal
  2017-08-17 17:12   ` Applied "ASoC: codecs: make snd_soc_dai_driver and snd_soc_component_driver const" to the asoc tree Mark Brown
  1 sibling, 1 reply; 5+ messages in thread
From: Bhumika Goyal @ 2017-08-16 17:15 UTC (permalink / raw)
  To: julia.lawall, lgirdwood, broonie, perex, tiwai, rjui, sbranden,
	jonmason, bcm-kernel-feedback-list, alsa-devel, linux-kernel,
	linux-arm-kernel
  Cc: Bhumika Goyal

Make these two structure variables const as they are either used in a
copy operation or passed to devm_snd_soc_register_component having the
corresponding argument as const.
Done using Coccinelle.

Signed-off-by: Bhumika Goyal <bhumirks@gmail.com>
---
 sound/soc/codecs/hdmi-codec.c | 2 +-
 sound/soc/codecs/lm4857.c     | 2 +-
 sound/soc/codecs/max9768.c    | 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/sound/soc/codecs/hdmi-codec.c b/sound/soc/codecs/hdmi-codec.c
index 7aba4f3..ce1be8b 100644
--- a/sound/soc/codecs/hdmi-codec.c
+++ b/sound/soc/codecs/hdmi-codec.c
@@ -692,7 +692,7 @@ static int hdmi_codec_pcm_new(struct snd_soc_pcm_runtime *rtd,
 	return snd_ctl_add(rtd->card->snd_card, kctl);
 }
 
-static struct snd_soc_dai_driver hdmi_i2s_dai = {
+static const struct snd_soc_dai_driver hdmi_i2s_dai = {
 	.name = "i2s-hifi",
 	.id = DAI_ID_I2S,
 	.playback = {
diff --git a/sound/soc/codecs/lm4857.c b/sound/soc/codecs/lm4857.c
index 558de10..1e96407 100644
--- a/sound/soc/codecs/lm4857.c
+++ b/sound/soc/codecs/lm4857.c
@@ -100,7 +100,7 @@ static SOC_VALUE_ENUM_SINGLE_AUTODISABLE_DECL(lm4857_mode_enum,
 	{ "EP", "Earpiece", "Mode" },
 };
 
-static struct snd_soc_component_driver lm4857_component_driver = {
+static const struct snd_soc_component_driver lm4857_component_driver = {
 	.controls = lm4857_controls,
 	.num_controls = ARRAY_SIZE(lm4857_controls),
 	.dapm_widgets = lm4857_dapm_widgets,
diff --git a/sound/soc/codecs/max9768.c b/sound/soc/codecs/max9768.c
index 5b82e26..7017c03 100644
--- a/sound/soc/codecs/max9768.c
+++ b/sound/soc/codecs/max9768.c
@@ -151,7 +151,7 @@ static int max9768_probe(struct snd_soc_component *component)
 	return 0;
 }
 
-static struct snd_soc_component_driver max9768_component_driver = {
+static const struct snd_soc_component_driver max9768_component_driver = {
 	.probe = max9768_probe,
 	.controls = max9768_volume,
 	.num_controls = ARRAY_SIZE(max9768_volume),
-- 
1.9.1

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

* Applied "ASoC: codecs: make snd_soc_dai_driver and snd_soc_component_driver const" to the asoc tree
  2017-08-16 17:15 ` [PATCH 2/2] ASoC: codecs: make snd_soc_dai_driver and snd_soc_component_driver const Bhumika Goyal
@ 2017-08-17 17:12   ` Mark Brown
  0 siblings, 0 replies; 5+ messages in thread
From: Mark Brown @ 2017-08-17 17:12 UTC (permalink / raw)
  To: Bhumika Goyal
  Cc: Mark Brown, julia.lawall, lgirdwood, broonie, perex, tiwai, rjui,
	sbranden, jonmason, bcm-kernel-feedback-list, alsa-devel,
	linux-kernel, linux-arm-kernel, alsa-devel

The patch

   ASoC: codecs: make snd_soc_dai_driver and snd_soc_component_driver 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 6e37f933ed1ade3201dd609d103c0ef79c0ef6b0 Mon Sep 17 00:00:00 2001
From: Bhumika Goyal <bhumirks@gmail.com>
Date: Wed, 16 Aug 2017 22:45:09 +0530
Subject: [PATCH] ASoC: codecs: make snd_soc_dai_driver and
 snd_soc_component_driver const

Make these two structure variables const as they are either used in a
copy operation or passed to devm_snd_soc_register_component having the
corresponding argument as const.
Done using Coccinelle.

Signed-off-by: Bhumika Goyal <bhumirks@gmail.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
---
 sound/soc/codecs/hdmi-codec.c | 2 +-
 sound/soc/codecs/lm4857.c     | 2 +-
 sound/soc/codecs/max9768.c    | 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/sound/soc/codecs/hdmi-codec.c b/sound/soc/codecs/hdmi-codec.c
index f288404f0a61..d73d2c1ed823 100644
--- a/sound/soc/codecs/hdmi-codec.c
+++ b/sound/soc/codecs/hdmi-codec.c
@@ -692,7 +692,7 @@ static int hdmi_codec_pcm_new(struct snd_soc_pcm_runtime *rtd,
 	return snd_ctl_add(rtd->card->snd_card, kctl);
 }
 
-static struct snd_soc_dai_driver hdmi_i2s_dai = {
+static const struct snd_soc_dai_driver hdmi_i2s_dai = {
 	.name = "i2s-hifi",
 	.id = DAI_ID_I2S,
 	.playback = {
diff --git a/sound/soc/codecs/lm4857.c b/sound/soc/codecs/lm4857.c
index 558de1053f73..1e964079642a 100644
--- a/sound/soc/codecs/lm4857.c
+++ b/sound/soc/codecs/lm4857.c
@@ -100,7 +100,7 @@ static const struct snd_soc_dapm_route lm4857_routes[] = {
 	{ "EP", "Earpiece", "Mode" },
 };
 
-static struct snd_soc_component_driver lm4857_component_driver = {
+static const struct snd_soc_component_driver lm4857_component_driver = {
 	.controls = lm4857_controls,
 	.num_controls = ARRAY_SIZE(lm4857_controls),
 	.dapm_widgets = lm4857_dapm_widgets,
diff --git a/sound/soc/codecs/max9768.c b/sound/soc/codecs/max9768.c
index 5b82e26cd5d1..7017c0389e73 100644
--- a/sound/soc/codecs/max9768.c
+++ b/sound/soc/codecs/max9768.c
@@ -151,7 +151,7 @@ static int max9768_probe(struct snd_soc_component *component)
 	return 0;
 }
 
-static struct snd_soc_component_driver max9768_component_driver = {
+static const struct snd_soc_component_driver max9768_component_driver = {
 	.probe = max9768_probe,
 	.controls = max9768_volume,
 	.num_controls = ARRAY_SIZE(max9768_volume),
-- 
2.13.3

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

* Applied "ASoC: bcm: make snd_soc_dai_driver const" to the asoc tree
  2017-08-16 17:15 ` [PATCH 1/2] ASoC: bcm: make snd_soc_dai_driver const Bhumika Goyal
@ 2017-08-17 17:12   ` Mark Brown
  0 siblings, 0 replies; 5+ messages in thread
From: Mark Brown @ 2017-08-17 17:12 UTC (permalink / raw)
  To: Bhumika Goyal
  Cc: Mark Brown, julia.lawall, lgirdwood, broonie, perex, tiwai, rjui,
	sbranden, jonmason, bcm-kernel-feedback-list, alsa-devel,
	linux-kernel, linux-arm-kernel, alsa-devel

The patch

   ASoC: bcm: make snd_soc_dai_driver 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 cc6e25631ddd4f3295fc79568f2145c437849e63 Mon Sep 17 00:00:00 2001
From: Bhumika Goyal <bhumirks@gmail.com>
Date: Wed, 16 Aug 2017 22:45:08 +0530
Subject: [PATCH] ASoC: bcm: make snd_soc_dai_driver const

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

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

diff --git a/sound/soc/bcm/cygnus-ssp.c b/sound/soc/bcm/cygnus-ssp.c
index e710bb0c5637..cdd5e82439dd 100644
--- a/sound/soc/bcm/cygnus-ssp.c
+++ b/sound/soc/bcm/cygnus-ssp.c
@@ -1288,7 +1288,7 @@ static const struct snd_soc_dai_driver cygnus_ssp_dai_info[] = {
 	INIT_CPU_DAI(2),
 };
 
-static struct snd_soc_dai_driver cygnus_spdif_dai_info = {
+static const struct snd_soc_dai_driver cygnus_spdif_dai_info = {
 	.name = "cygnus-spdif",
 	.playback = {
 		.channels_min = 2,
-- 
2.13.3

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

end of thread, other threads:[~2017-08-17 17:20 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-08-16 17:15 [PATCH 0/2] ASoC: make snd_soc_dai_driver and snd_soc_component_driver const Bhumika Goyal
2017-08-16 17:15 ` [PATCH 1/2] ASoC: bcm: make snd_soc_dai_driver const Bhumika Goyal
2017-08-17 17:12   ` Applied "ASoC: bcm: make snd_soc_dai_driver const" to the asoc tree Mark Brown
2017-08-16 17:15 ` [PATCH 2/2] ASoC: codecs: make snd_soc_dai_driver and snd_soc_component_driver const Bhumika Goyal
2017-08-17 17:12   ` Applied "ASoC: codecs: make snd_soc_dai_driver and snd_soc_component_driver 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).