Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1710185 > unrolled thread

[PATCH] ASoC: Intel: constify snd_compr_codec_caps structures

Started byJulia Lawall <Julia.Lawall@lip6.fr>
First post2017-08-12 09:00 +0200
Last post2017-08-12 09:00 +0200
Articles 1 — 1 participant

Back to article view | Back to linux.kernel


Contents

  [PATCH] ASoC: Intel: constify snd_compr_codec_caps structures Julia Lawall <Julia.Lawall@lip6.fr> - 2017-08-12 09:00 +0200

#1710185 — [PATCH] ASoC: Intel: constify snd_compr_codec_caps structures

FromJulia Lawall <Julia.Lawall@lip6.fr>
Date2017-08-12 09:00 +0200
Subject[PATCH] ASoC: Intel: constify snd_compr_codec_caps structures
Message-ID<udyyS-5DC-11@gated-at.bofh.it>
These snd_compr_codec_caps structures are only copied into other
structures, so they can be const.

Done with the help of Coccinelle.

Signed-off-by: Julia Lawall <Julia.Lawall@lip6.fr>

---
 sound/soc/intel/atom/sst/sst_drv_interface.c |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/sound/soc/intel/atom/sst/sst_drv_interface.c b/sound/soc/intel/atom/sst/sst_drv_interface.c
index ce689c5..71af544 100644
--- a/sound/soc/intel/atom/sst/sst_drv_interface.c
+++ b/sound/soc/intel/atom/sst/sst_drv_interface.c
@@ -407,7 +407,7 @@ static int sst_cdev_caps(struct snd_compr_caps *caps)
 	return 0;
 }
 
-static struct snd_compr_codec_caps caps_mp3 = {
+static const struct snd_compr_codec_caps caps_mp3 = {
 	.num_descriptors = 1,
 	.descriptor[0].max_ch = 2,
 	.descriptor[0].sample_rates[0] = 48000,
@@ -424,7 +424,7 @@ static int sst_cdev_caps(struct snd_compr_caps *caps)
 	.descriptor[0].formats = 0,
 };
 
-static struct snd_compr_codec_caps caps_aac = {
+static const struct snd_compr_codec_caps caps_aac = {
 	.num_descriptors = 2,
 	.descriptor[1].max_ch = 2,
 	.descriptor[0].sample_rates[0] = 48000,

[toc] | [standalone]


Back to top | Article view | linux.kernel


csiph-web