diff options
author | Bhumika Goyal <bhumirks@gmail.com> | 2017-08-16 22:45:08 +0530 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2017-08-17 18:10:17 +0100 |
commit | cc6e25631ddd4f3295fc79568f2145c437849e63 (patch) | |
tree | f84b57257f60fc15bca71d1025841ea322fb1401 /sound/soc/bcm | |
parent | 5771a8c08880cdca3bfb4a3fc6d309d6bba20877 (diff) | |
download | linux-stable-cc6e25631ddd4f3295fc79568f2145c437849e63.tar.gz linux-stable-cc6e25631ddd4f3295fc79568f2145c437849e63.tar.bz2 linux-stable-cc6e25631ddd4f3295fc79568f2145c437849e63.zip |
ASoC: bcm: make snd_soc_dai_driver const
Make this const as it is only used during a copy operation.
Done using Coccinelle.
Signed-off-by: Bhumika Goyal <bhumirks@gmail.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'sound/soc/bcm')
-rw-r--r-- | sound/soc/bcm/cygnus-ssp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/soc/bcm/cygnus-ssp.c b/sound/soc/bcm/cygnus-ssp.c index e710bb0c5637..cdd5e82439dd 100644 --- a/sound/soc/bcm/cygnus-ssp.c +++ b/sound/soc/bcm/cygnus-ssp.c @@ -1288,7 +1288,7 @@ static const struct snd_soc_dai_driver cygnus_ssp_dai_info[] = { INIT_CPU_DAI(2), }; -static struct snd_soc_dai_driver cygnus_spdif_dai_info = { +static const struct snd_soc_dai_driver cygnus_spdif_dai_info = { .name = "cygnus-spdif", .playback = { .channels_min = 2, |