diff options
author | Bhumika Goyal <bhumirks@gmail.com> | 2017-08-16 22:45:09 +0530 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2017-08-17 18:10:34 +0100 |
commit | 6e37f933ed1ade3201dd609d103c0ef79c0ef6b0 (patch) | |
tree | 246c5356bce658d2bdc578c1528f97ac674da1a3 /sound/soc/codecs/hdmi-codec.c | |
parent | 0ed6f15701efa0d62b4556900cd67a726578389e (diff) |
ASoC: codecs: make snd_soc_dai_driver and snd_soc_component_driver const
Make these two structure variables const as they are either used in a
copy operation or passed to devm_snd_soc_register_component having the
corresponding argument as 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/codecs/hdmi-codec.c')
-rw-r--r-- | sound/soc/codecs/hdmi-codec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/soc/codecs/hdmi-codec.c b/sound/soc/codecs/hdmi-codec.c index f288404f0a61..d73d2c1ed823 100644 --- a/sound/soc/codecs/hdmi-codec.c +++ b/sound/soc/codecs/hdmi-codec.c @@ -692,7 +692,7 @@ static int hdmi_codec_pcm_new(struct snd_soc_pcm_runtime *rtd, return snd_ctl_add(rtd->card->snd_card, kctl); } -static struct snd_soc_dai_driver hdmi_i2s_dai = { +static const struct snd_soc_dai_driver hdmi_i2s_dai = { .name = "i2s-hifi", .id = DAI_ID_I2S, .playback = { |