Commit 8e2175d4 authored by Axel Lin's avatar Axel Lin Committed by Mark Brown

ASoC: sirf-audio-codec: Staticise local symbols

Also make sirf_audio_codec_dai_ops const.
Signed-off-by: default avatarAxel Lin <axel.lin@ingics.com>
Signed-off-by: default avatarMark Brown <broonie@kernel.org>
parent d770e558
...@@ -370,11 +370,11 @@ static int sirf_audio_codec_trigger(struct snd_pcm_substream *substream, ...@@ -370,11 +370,11 @@ static int sirf_audio_codec_trigger(struct snd_pcm_substream *substream,
return 0; return 0;
} }
struct snd_soc_dai_ops sirf_audio_codec_dai_ops = { static const struct snd_soc_dai_ops sirf_audio_codec_dai_ops = {
.trigger = sirf_audio_codec_trigger, .trigger = sirf_audio_codec_trigger,
}; };
struct snd_soc_dai_driver sirf_audio_codec_dai = { static struct snd_soc_dai_driver sirf_audio_codec_dai = {
.name = "sirf-audio-codec", .name = "sirf-audio-codec",
.playback = { .playback = {
.stream_name = "Playback", .stream_name = "Playback",
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment