aboutsummaryrefslogtreecommitdiff
path: root/sound/soc/codecs/ak5558.c
diff options
context:
space:
mode:
authorGravatar Julia Lawall <Julia.Lawall@lip6.fr> 2018-10-27 15:34:44 +0200
committerGravatar Mark Brown <broonie@kernel.org> 2018-11-05 11:25:42 +0000
commit704a9fc20b87f2929732cab0a1a04f28d4093085 (patch)
tree64a16aa48411a8d5ac9453c5209b4d9745597710 /sound/soc/codecs/ak5558.c
parentASoC: qdsp6: q6afe-dai: constify snd_soc_dai_ops structures (diff)
downloadlinux-704a9fc20b87f2929732cab0a1a04f28d4093085.tar.gz
linux-704a9fc20b87f2929732cab0a1a04f28d4093085.tar.bz2
linux-704a9fc20b87f2929732cab0a1a04f28d4093085.zip
ASoC: codecs: constify snd_soc_dai_ops structures
The snd_soc_dai_ops structures are only stored in the ops field of a snd_soc_dai_driver structure, so make the snd_soc_dai_ops structures const as well. Done with the help of Coccinelle. Signed-off-by: Julia Lawall <Julia.Lawall@lip6.fr> Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'sound/soc/codecs/ak5558.c')
-rw-r--r--sound/soc/codecs/ak5558.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/soc/codecs/ak5558.c b/sound/soc/codecs/ak5558.c
index 448bb90c9c8e..60f1f12c81ea 100644
--- a/sound/soc/codecs/ak5558.c
+++ b/sound/soc/codecs/ak5558.c
@@ -246,7 +246,7 @@ static int ak5558_startup(struct snd_pcm_substream *substream,
&ak5558_rate_constraints);
}
-static struct snd_soc_dai_ops ak5558_dai_ops = {
+static const struct snd_soc_dai_ops ak5558_dai_ops = {
.startup = ak5558_startup,
.hw_params = ak5558_hw_params,