]> git.baikalelectronics.ru Git - kernel.git/commitdiff
ASoC: codecs: wcd938x: constify static struct snd_soc_dai_ops
authorPu Lehui <pulehui@huawei.com>
Tue, 15 Jun 2021 11:33:24 +0000 (19:33 +0800)
committerMark Brown <broonie@kernel.org>
Tue, 15 Jun 2021 11:51:50 +0000 (12:51 +0100)
The snd_soc_dai_ops structures is only stored in the ops field of a
snd_soc_dai_driver structure, so make the snd_soc_dai_ops structure
const to allow the compiler to put it in read-only memory.

Signed-off-by: Pu Lehui <pulehui@huawei.com>
Link: https://lore.kernel.org/r/20210615113324.238837-1-pulehui@huawei.com
Signed-off-by: Mark Brown <broonie@kernel.org>
sound/soc/codecs/wcd938x.c

index a2c76dc8fd891d4afe5382f132f640581a7dc83c..d19d9a1ceea7f5ad13822156f23d3fb57ca0b2b8 100644 (file)
@@ -3519,7 +3519,7 @@ static int wcd938x_codec_set_sdw_stream(struct snd_soc_dai *dai,
 
 }
 
-static struct snd_soc_dai_ops wcd938x_sdw_dai_ops = {
+static const struct snd_soc_dai_ops wcd938x_sdw_dai_ops = {
        .hw_params = wcd938x_codec_hw_params,
        .hw_free = wcd938x_codec_free,
        .set_sdw_stream = wcd938x_codec_set_sdw_stream,