aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMark Brown <broonie@opensource.wolfsonmicro.com>2012-05-09 17:14:41 -0400
committerMark Brown <broonie@opensource.wolfsonmicro.com>2012-05-09 17:56:30 -0400
commita7f44885e23070cbb78a06d6e04bb6b687f75c64 (patch)
treeee82ee7e08a70b8453059b7f673dd63a0107c412
parentfdfc4f3eb796896133a4dbcb1c1f94ff02274649 (diff)
ASoC: cs42l52: Staticise non-exported symbols
Makes sparse happy and avoids polluting the global namespace. Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com> Acked-by: Brian Austin <brian.austin@cirrus.com>
-rw-r--r--sound/soc/codecs/cs42l52.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sound/soc/codecs/cs42l52.c b/sound/soc/codecs/cs42l52.c
index 703060daeac4..a7109413aef1 100644
--- a/sound/soc/codecs/cs42l52.c
+++ b/sound/soc/codecs/cs42l52.c
@@ -919,7 +919,7 @@ static struct snd_soc_dai_ops cs42l52_ops = {
919 .set_sysclk = cs42l52_set_sysclk, 919 .set_sysclk = cs42l52_set_sysclk,
920}; 920};
921 921
922struct snd_soc_dai_driver cs42l52_dai = { 922static struct snd_soc_dai_driver cs42l52_dai = {
923 .name = "cs42l52", 923 .name = "cs42l52",
924 .playback = { 924 .playback = {
925 .stream_name = "Playback", 925 .stream_name = "Playback",
@@ -1163,7 +1163,7 @@ static int cs42l52_remove(struct snd_soc_codec *codec)
1163 return 0; 1163 return 0;
1164} 1164}
1165 1165
1166struct snd_soc_codec_driver soc_codec_dev_cs42l52 = { 1166static struct snd_soc_codec_driver soc_codec_dev_cs42l52 = {
1167 .probe = cs42l52_probe, 1167 .probe = cs42l52_probe,
1168 .remove = cs42l52_remove, 1168 .remove = cs42l52_remove,
1169 .suspend = cs42l52_suspend, 1169 .suspend = cs42l52_suspend,