diff options
author | Bhumika Goyal <bhumirks@gmail.com> | 2017-08-14 17:08:41 +0530 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2017-08-14 17:22:29 +0100 |
commit | 80cc4df8b46e91c28a6d39dd0ba76bd9c83c18ce (patch) | |
tree | 7b2d5b67f45a59062fbd3033d4d4d4d2813b11dc /sound/soc/intel/atom/sst-mfld-platform-pcm.c | |
parent | 67e8ee9b4b387f5c4d12ad9b926a78a9bf3dc275 (diff) | |
download | linux-80cc4df8b46e91c28a6d39dd0ba76bd9c83c18ce.tar.gz linux-80cc4df8b46e91c28a6d39dd0ba76bd9c83c18ce.tar.bz2 linux-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/atom/sst-mfld-platform-pcm.c')
-rw-r--r-- | sound/soc/intel/atom/sst-mfld-platform-pcm.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/soc/intel/atom/sst-mfld-platform-pcm.c b/sound/soc/intel/atom/sst-mfld-platform-pcm.c index 49c7b88b5bdc..b272df5ce0e8 100644 --- a/sound/soc/intel/atom/sst-mfld-platform-pcm.c +++ b/sound/soc/intel/atom/sst-mfld-platform-pcm.c @@ -705,7 +705,7 @@ static int sst_soc_probe(struct snd_soc_platform *platform) return sst_dsp_init_v2_dpcm(platform); } -static struct snd_soc_platform_driver sst_soc_platform_drv = { +static const struct snd_soc_platform_driver sst_soc_platform_drv = { .probe = sst_soc_probe, .ops = &sst_platform_ops, .compr_ops = &sst_platform_compr_ops, |