diff options
author | Bhumika Goyal <bhumirks@gmail.com> | 2017-08-16 19:59:29 +0300 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2017-08-17 20:09:39 +0300 |
commit | 2af236391f5a167630ebca0eced832afcc4634e0 (patch) | |
tree | 23edb62ea725f84f2554e5ecbeae729e09aaa333 /sound/soc/samsung/smdk_spdif.c | |
parent | 7b814a7d4e83b0917efef9dd11a8c095371f987c (diff) | |
download | linux-2af236391f5a167630ebca0eced832afcc4634e0.tar.xz |
ASoC: samsung: make snd_soc_ops const
Make these const as they are only stored in the ops field of a
snd_soc_dai_link structure, which is const.
Done using Coccinelle.
Signed-off-by: Bhumika Goyal <bhumirks@gmail.com>
Reviewed-by: Krzysztof Kozlowski <krzk@kernel.org>
Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'sound/soc/samsung/smdk_spdif.c')
-rw-r--r-- | sound/soc/samsung/smdk_spdif.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/soc/samsung/smdk_spdif.c b/sound/soc/samsung/smdk_spdif.c index a2f2363fe1c2..7fc7cc6d1530 100644 --- a/sound/soc/samsung/smdk_spdif.c +++ b/sound/soc/samsung/smdk_spdif.c @@ -144,7 +144,7 @@ static int smdk_hw_params(struct snd_pcm_substream *substream, return ret; } -static struct snd_soc_ops smdk_spdif_ops = { +static const struct snd_soc_ops smdk_spdif_ops = { .hw_params = smdk_hw_params, }; |