diff options
author | Bhumika Goyal <bhumirks@gmail.com> | 2017-08-16 16:09:01 +0530 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2017-08-16 13:01:45 +0100 |
commit | 4dbcc5ff2513f2192dc2a5dfdbb9ad3d7e891e85 (patch) | |
tree | 51af2c7f8fbc535363f3d5e126eafd725e0fd589 /sound/soc/codecs/wm5110.c | |
parent | 4428ffa1fe66a9e3cf68bba3ad135f17be4ed674 (diff) |
ASoC: codecs: make snd_compr_ops const
Make these const as they are only stored in the compr_ops field of a
snd_soc_platform_driver structure, which is of type const.
Done using Coccinelle
Signed-off-by: Bhumika Goyal <bhumirks@gmail.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'sound/soc/codecs/wm5110.c')
-rw-r--r-- | sound/soc/codecs/wm5110.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/soc/codecs/wm5110.c b/sound/soc/codecs/wm5110.c index 1bc942152eff..8aa136c28ec1 100644 --- a/sound/soc/codecs/wm5110.c +++ b/sound/soc/codecs/wm5110.c @@ -2372,7 +2372,7 @@ static const struct snd_soc_codec_driver soc_codec_dev_wm5110 = { }, }; -static struct snd_compr_ops wm5110_compr_ops = { +static const struct snd_compr_ops wm5110_compr_ops = { .open = wm5110_open, .free = wm_adsp_compr_free, .set_params = wm_adsp_compr_set_params, |