ASoC: generic: make snd_soc_ops const

Make these const as they are only stored in the ops field of a
snd_soc_dai_link structure, which is const.
Done using Coccinelle.

Signed-off-by: Bhumika Goyal <bhumirks@gmail.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
This commit is contained in:
Bhumika Goyal 2017-08-16 22:29:26 +05:30 committed by Mark Brown
parent 5771a8c088
commit e23d834876
2 changed files with 2 additions and 2 deletions

View file

@ -95,7 +95,7 @@ static void asoc_graph_card_shutdown(struct snd_pcm_substream *substream)
asoc_simple_card_clk_disable(&dai_props->codec_dai); asoc_simple_card_clk_disable(&dai_props->codec_dai);
} }
static struct snd_soc_ops asoc_graph_card_ops = { static const struct snd_soc_ops asoc_graph_card_ops = {
.startup = asoc_graph_card_startup, .startup = asoc_graph_card_startup,
.shutdown = asoc_graph_card_shutdown, .shutdown = asoc_graph_card_shutdown,
}; };

View file

@ -56,7 +56,7 @@ static void asoc_graph_card_shutdown(struct snd_pcm_substream *substream)
asoc_simple_card_clk_disable(dai_props); asoc_simple_card_clk_disable(dai_props);
} }
static struct snd_soc_ops asoc_graph_card_ops = { static const struct snd_soc_ops asoc_graph_card_ops = {
.startup = asoc_graph_card_startup, .startup = asoc_graph_card_startup,
.shutdown = asoc_graph_card_shutdown, .shutdown = asoc_graph_card_shutdown,
}; };