Skip to content

Commit

Permalink
ASoC: rt5645: Staticise non-exported symbols
Browse files Browse the repository at this point in the history
The patch is for staticising non-exported symbols

Signed-off-by: Oder Chiou <oder_chiou@realtek.com>
Signed-off-by: Mark Brown <broonie@linaro.org>
  • Loading branch information
Oder Chiou authored and Mark Brown committed May 8, 2014
1 parent 92e160d commit 9e22f78
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions sound/soc/codecs/rt5645.c
Original file line number Diff line number Diff line change
Expand Up @@ -2248,15 +2248,15 @@ static int rt5645_resume(struct snd_soc_codec *codec)
#define RT5645_FORMATS (SNDRV_PCM_FMTBIT_S16_LE | SNDRV_PCM_FMTBIT_S20_3LE | \
SNDRV_PCM_FMTBIT_S24_LE | SNDRV_PCM_FMTBIT_S8)

struct snd_soc_dai_ops rt5645_aif_dai_ops = {
static struct snd_soc_dai_ops rt5645_aif_dai_ops = {
.hw_params = rt5645_hw_params,
.set_fmt = rt5645_set_dai_fmt,
.set_sysclk = rt5645_set_dai_sysclk,
.set_tdm_slot = rt5645_set_tdm_slot,
.set_pll = rt5645_set_dai_pll,
};

struct snd_soc_dai_driver rt5645_dai[] = {
static struct snd_soc_dai_driver rt5645_dai[] = {
{
.name = "rt5645-aif1",
.id = RT5645_AIF1,
Expand Down Expand Up @@ -2459,7 +2459,7 @@ static int rt5645_i2c_remove(struct i2c_client *i2c)
return 0;
}

struct i2c_driver rt5645_i2c_driver = {
static struct i2c_driver rt5645_i2c_driver = {
.driver = {
.name = "rt5645",
.owner = THIS_MODULE,
Expand Down

0 comments on commit 9e22f78

Please sign in to comment.