From: Mark Brown Date: Wed, 26 Jan 2011 11:35:28 +0000 (+0000) Subject: ASoC: Staticise non-exported symbols in cs4271 X-Git-Tag: v3.12-rc1~3017^2~1226^2~35 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=16af7d60aa27d3fc39e46fd456b8e33d34d60437;p=kernel%2Fkernel-generic.git ASoC: Staticise non-exported symbols in cs4271 Signed-off-by: Mark Brown Acked-by: Alexander Sverdlin Acked-by: Liam Girdwood --- diff --git a/sound/soc/codecs/cs4271.c b/sound/soc/codecs/cs4271.c index 5357ec5..9c5b7db 100644 --- a/sound/soc/codecs/cs4271.c +++ b/sound/soc/codecs/cs4271.c @@ -386,7 +386,7 @@ static struct snd_soc_dai_ops cs4271_dai_ops = { .digital_mute = cs4271_digital_mute, }; -struct snd_soc_dai_driver cs4271_dai = { +static struct snd_soc_dai_driver cs4271_dai = { .name = "cs4271-hifi", .playback = { .stream_name = "Playback", @@ -526,7 +526,7 @@ static int cs4271_remove(struct snd_soc_codec *codec) return 0; }; -struct snd_soc_codec_driver soc_codec_dev_cs4271 = { +static struct snd_soc_codec_driver soc_codec_dev_cs4271 = { .probe = cs4271_probe, .remove = cs4271_remove, .suspend = cs4271_soc_suspend,