diff options
author | Arvind Yadav <arvind.yadav.cs@gmail.com> | 2017-08-14 07:56:32 +0200 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2017-08-14 18:23:43 +0200 |
commit | b23bd34c402d08a2c1d6facdba4a75e016601c12 (patch) | |
tree | d305d0a27bea2543232fe4850f7c2e3954fa9c48 /sound/soc/sh/fsi.c | |
parent | ASoC: sh: make snd_soc_platform_driver const (diff) | |
download | linux-b23bd34c402d08a2c1d6facdba4a75e016601c12.tar.xz linux-b23bd34c402d08a2c1d6facdba4a75e016601c12.zip |
ASoC: sh: 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/sh/fsi.c')
-rw-r--r-- | sound/soc/sh/fsi.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/soc/sh/fsi.c b/sound/soc/sh/fsi.c index 90021b8a799a..5d7d9fe8bc98 100644 --- a/sound/soc/sh/fsi.c +++ b/sound/soc/sh/fsi.c @@ -1755,7 +1755,7 @@ static snd_pcm_uframes_t fsi_pointer(struct snd_pcm_substream *substream) return fsi_sample2frame(fsi, io->buff_sample_pos); } -static struct snd_pcm_ops fsi_pcm_ops = { +static const struct snd_pcm_ops fsi_pcm_ops = { .open = fsi_pcm_open, .ioctl = snd_pcm_lib_ioctl, .hw_params = fsi_hw_params, |