aboutsummaryrefslogtreecommitdiffstats
path: root/sound/soc/intel/baytrail/sst-baytrail-pcm.c
diff options
context:
space:
mode:
authorBhumika Goyal <bhumirks@gmail.com>2017-08-14 17:08:41 +0530
committerMark Brown <broonie@kernel.org>2017-08-14 17:22:29 +0100
commit80cc4df8b46e91c28a6d39dd0ba76bd9c83c18ce (patch)
tree7b2d5b67f45a59062fbd3033d4d4d4d2813b11dc /sound/soc/intel/baytrail/sst-baytrail-pcm.c
parentASoC: Intel: constify pci_device_id. (diff)
downloadlinux-dev-80cc4df8b46e91c28a6d39dd0ba76bd9c83c18ce.tar.xz
linux-dev-80cc4df8b46e91c28a6d39dd0ba76bd9c83c18ce.zip
ASoC: Intel: make snd_soc_platform_driver const
Make these const as they are only passed as the 2nd argument to the function snd_soc_register_platform, 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/intel/baytrail/sst-baytrail-pcm.c')
-rw-r--r--sound/soc/intel/baytrail/sst-baytrail-pcm.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/soc/intel/baytrail/sst-baytrail-pcm.c b/sound/soc/intel/baytrail/sst-baytrail-pcm.c
index 4765ad474544..84cb568c3ad6 100644
--- a/sound/soc/intel/baytrail/sst-baytrail-pcm.c
+++ b/sound/soc/intel/baytrail/sst-baytrail-pcm.c
@@ -395,7 +395,7 @@ static int sst_byt_pcm_remove(struct snd_soc_platform *platform)
return 0;
}
-static struct snd_soc_platform_driver byt_soc_platform = {
+static const struct snd_soc_platform_driver byt_soc_platform = {
.probe = sst_byt_pcm_probe,
.remove = sst_byt_pcm_remove,
.ops = &sst_byt_pcm_ops,