aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMark Brown <broonie@linaro.org>2014-08-01 12:22:19 -0400
committerMark Brown <broonie@linaro.org>2014-08-01 14:17:04 -0400
commitff62b95894b88622dd6373730d57a8a7e126f687 (patch)
treef6a33a02115a7988c41a46ac2b057d6b067e2398
parent5e8351de740d9eff26cc146a6591a4e7517496b0 (diff)
ASoC: rt5670: Staticise non-exported symbols
Signed-off-by: Mark Brown <broonie@linaro.org>
-rw-r--r--sound/soc/codecs/rt5670.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sound/soc/codecs/rt5670.c b/sound/soc/codecs/rt5670.c
index 879d42e1a1bd..31f664fb832f 100644
--- a/sound/soc/codecs/rt5670.c
+++ b/sound/soc/codecs/rt5670.c
@@ -2407,7 +2407,7 @@ static int rt5670_resume(struct snd_soc_codec *codec)
2407#define RT5670_FORMATS (SNDRV_PCM_FMTBIT_S16_LE | SNDRV_PCM_FMTBIT_S20_3LE | \ 2407#define RT5670_FORMATS (SNDRV_PCM_FMTBIT_S16_LE | SNDRV_PCM_FMTBIT_S20_3LE | \
2408 SNDRV_PCM_FMTBIT_S24_LE | SNDRV_PCM_FMTBIT_S8) 2408 SNDRV_PCM_FMTBIT_S24_LE | SNDRV_PCM_FMTBIT_S8)
2409 2409
2410struct snd_soc_dai_ops rt5670_aif_dai_ops = { 2410static struct snd_soc_dai_ops rt5670_aif_dai_ops = {
2411 .hw_params = rt5670_hw_params, 2411 .hw_params = rt5670_hw_params,
2412 .set_fmt = rt5670_set_dai_fmt, 2412 .set_fmt = rt5670_set_dai_fmt,
2413 .set_sysclk = rt5670_set_dai_sysclk, 2413 .set_sysclk = rt5670_set_dai_sysclk,
@@ -2415,7 +2415,7 @@ struct snd_soc_dai_ops rt5670_aif_dai_ops = {
2415 .set_pll = rt5670_set_dai_pll, 2415 .set_pll = rt5670_set_dai_pll,
2416}; 2416};
2417 2417
2418struct snd_soc_dai_driver rt5670_dai[] = { 2418static struct snd_soc_dai_driver rt5670_dai[] = {
2419 { 2419 {
2420 .name = "rt5670-aif1", 2420 .name = "rt5670-aif1",
2421 .id = RT5670_AIF1, 2421 .id = RT5670_AIF1,
@@ -2675,7 +2675,7 @@ static int rt5670_i2c_remove(struct i2c_client *i2c)
2675 return 0; 2675 return 0;
2676} 2676}
2677 2677
2678struct i2c_driver rt5670_i2c_driver = { 2678static struct i2c_driver rt5670_i2c_driver = {
2679 .driver = { 2679 .driver = {
2680 .name = "rt5670", 2680 .name = "rt5670",
2681 .owner = THIS_MODULE, 2681 .owner = THIS_MODULE,