diff options
author | Mark Brown <broonie@opensource.wolfsonmicro.com> | 2012-05-09 21:14:41 (GMT) |
---|---|---|
committer | Mark Brown <broonie@opensource.wolfsonmicro.com> | 2012-05-09 21:56:30 (GMT) |
commit | a7f44885e23070cbb78a06d6e04bb6b687f75c64 (patch) | |
tree | ee82ee7e08a70b8453059b7f673dd63a0107c412 /sound/soc | |
parent | fdfc4f3eb796896133a4dbcb1c1f94ff02274649 (diff) | |
download | linux-a7f44885e23070cbb78a06d6e04bb6b687f75c64.tar.xz |
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>
Diffstat (limited to 'sound/soc')
-rw-r--r-- | sound/soc/codecs/cs42l52.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sound/soc/codecs/cs42l52.c b/sound/soc/codecs/cs42l52.c index 703060d..a710941 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 = { .set_sysclk = cs42l52_set_sysclk, }; -struct snd_soc_dai_driver cs42l52_dai = { +static struct snd_soc_dai_driver cs42l52_dai = { .name = "cs42l52", .playback = { .stream_name = "Playback", @@ -1163,7 +1163,7 @@ static int cs42l52_remove(struct snd_soc_codec *codec) return 0; } -struct snd_soc_codec_driver soc_codec_dev_cs42l52 = { +static struct snd_soc_codec_driver soc_codec_dev_cs42l52 = { .probe = cs42l52_probe, .remove = cs42l52_remove, .suspend = cs42l52_suspend, |