diff options
author | Bhumika Goyal <bhumirks@gmail.com> | 2017-08-14 13:38:45 +0200 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2017-08-14 18:19:50 +0200 |
commit | 3d882b0ec6a50c5adff8e94a69d284543460fbe6 (patch) | |
tree | 274ae9717fa917c739f417208e49a54e936e6cb2 /sound/soc/pxa/mmp-pcm.c | |
parent | ASoC: mmp-sspa: constify snd_soc_dai_ops structure (diff) | |
download | linux-3d882b0ec6a50c5adff8e94a69d284543460fbe6.tar.xz linux-3d882b0ec6a50c5adff8e94a69d284543460fbe6.zip |
ASoC: pxa: make snd_soc_platform_driver const
Make these const as they are only passed as the 2nd argument to the
function devm_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/pxa/mmp-pcm.c')
-rw-r--r-- | sound/soc/pxa/mmp-pcm.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/soc/pxa/mmp-pcm.c b/sound/soc/pxa/mmp-pcm.c index 5b5f1a442891..38d599949ee4 100644 --- a/sound/soc/pxa/mmp-pcm.c +++ b/sound/soc/pxa/mmp-pcm.c @@ -211,7 +211,7 @@ err: return ret; } -static struct snd_soc_platform_driver mmp_soc_platform = { +static const struct snd_soc_platform_driver mmp_soc_platform = { .ops = &mmp_pcm_ops, .pcm_new = mmp_pcm_new, .pcm_free = mmp_pcm_free_dma_buffers, |