diff options
author | Ye Bin <yebin10@huawei.com> | 2021-04-08 08:26:44 +0200 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2021-04-09 14:39:55 +0200 |
commit | 33e12dea130d4b0abbaa9ae944e696d1a9d5261b (patch) | |
tree | 85368256c6e847f81f37ae2ea6daae267e119b4a /sound/soc/codecs/wcd9335.c | |
parent | ASoC: codecs: lpass-tx-macro: constify static struct snd_soc_dai_ops (diff) | |
download | linux-33e12dea130d4b0abbaa9ae944e696d1a9d5261b.tar.xz linux-33e12dea130d4b0abbaa9ae944e696d1a9d5261b.zip |
ASoC: wcd9335: constify static struct snd_soc_dai_ops
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.
Reported-by: Hulk Robot <hulkci@huawei.com>
Signed-off-by: Ye Bin <yebin10@huawei.com>
Link: https://lore.kernel.org/r/20210408062644.802988-1-yebin10@huawei.com
Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'sound/soc/codecs/wcd9335.c')
-rw-r--r-- | sound/soc/codecs/wcd9335.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/soc/codecs/wcd9335.c b/sound/soc/codecs/wcd9335.c index adb325fac930..86c92e03ea5d 100644 --- a/sound/soc/codecs/wcd9335.c +++ b/sound/soc/codecs/wcd9335.c @@ -2058,7 +2058,7 @@ static int wcd9335_get_channel_map(struct snd_soc_dai *dai, return 0; } -static struct snd_soc_dai_ops wcd9335_dai_ops = { +static const struct snd_soc_dai_ops wcd9335_dai_ops = { .hw_params = wcd9335_hw_params, .trigger = wcd9335_trigger, .set_channel_map = wcd9335_set_channel_map, |