summaryrefslogtreecommitdiffstats
path: root/sound/soc/au1x/dbdma2.c
diff options
context:
space:
mode:
authorArvind Yadav2017-08-14 07:56:24 +0200
committerMark Brown2017-08-14 18:17:10 +0200
commite731a870153271c861f06dc09e6acb5781b973f3 (patch)
treed43fe1d160b136a6df37bf504f4ca635c8890c2b /sound/soc/au1x/dbdma2.c
parentASoC: au1x: psc-i2s: constify dev_pm_ops structure (diff)
downloadkernel-qcow2-linux-e731a870153271c861f06dc09e6acb5781b973f3.tar.gz
kernel-qcow2-linux-e731a870153271c861f06dc09e6acb5781b973f3.tar.xz
kernel-qcow2-linux-e731a870153271c861f06dc09e6acb5781b973f3.zip
ASoC: au1x: constify snd_pcm_ops structures
snd_pcm_ops are not supposed to change at runtime. All functions working with snd_pcm_ops provided by <sound/soc.h> work with const snd_pcm_ops. So mark the non-const structs as const. Signed-off-by: Arvind Yadav <arvind.yadav.cs@gmail.com> Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'sound/soc/au1x/dbdma2.c')
-rw-r--r--sound/soc/au1x/dbdma2.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/soc/au1x/dbdma2.c b/sound/soc/au1x/dbdma2.c
index b5d1caa04d8e..6a035ca0f521 100644
--- a/sound/soc/au1x/dbdma2.c
+++ b/sound/soc/au1x/dbdma2.c
@@ -304,7 +304,7 @@ static int au1xpsc_pcm_close(struct snd_pcm_substream *substream)
return 0;
}
-static struct snd_pcm_ops au1xpsc_pcm_ops = {
+static const struct snd_pcm_ops au1xpsc_pcm_ops = {
.open = au1xpsc_pcm_open,
.close = au1xpsc_pcm_close,
.ioctl = snd_pcm_lib_ioctl,