aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMark Brown <broonie@opensource.wolfsonmicro.com>2011-01-26 06:35:28 -0500
committerMark Brown <broonie@opensource.wolfsonmicro.com>2011-01-26 14:10:49 -0500
commit16af7d60aa27d3fc39e46fd456b8e33d34d60437 (patch)
tree2fc77ae8c07ea86532c160178c50cf2dbd7f13ea
parentf17c13ca52d5c5a6a164536244a6debb8cd17983 (diff)
ASoC: Staticise non-exported symbols in cs4271
Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com> Acked-by: Alexander Sverdlin <subaparts@yandex.ru> Acked-by: Liam Girdwood <lrg@slimlogic.co.uk>
-rw-r--r--sound/soc/codecs/cs4271.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sound/soc/codecs/cs4271.c b/sound/soc/codecs/cs4271.c
index 5357ec5f5d7c..9c5b7db0ce6a 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 = {
386 .digital_mute = cs4271_digital_mute, 386 .digital_mute = cs4271_digital_mute,
387}; 387};
388 388
389struct snd_soc_dai_driver cs4271_dai = { 389static struct snd_soc_dai_driver cs4271_dai = {
390 .name = "cs4271-hifi", 390 .name = "cs4271-hifi",
391 .playback = { 391 .playback = {
392 .stream_name = "Playback", 392 .stream_name = "Playback",
@@ -526,7 +526,7 @@ static int cs4271_remove(struct snd_soc_codec *codec)
526 return 0; 526 return 0;
527}; 527};
528 528
529struct snd_soc_codec_driver soc_codec_dev_cs4271 = { 529static struct snd_soc_codec_driver soc_codec_dev_cs4271 = {
530 .probe = cs4271_probe, 530 .probe = cs4271_probe,
531 .remove = cs4271_remove, 531 .remove = cs4271_remove,
532 .suspend = cs4271_soc_suspend, 532 .suspend = cs4271_soc_suspend,