aboutsummaryrefslogtreecommitdiffstats
path: root/sound
diff options
context:
space:
mode:
authorMark Brown <broonie@opensource.wolfsonmicro.com>2010-10-20 13:54:03 -0700
committerArve Hjønnevåg <arve@android.com>2011-11-17 17:51:20 -0800
commit402c3fe70a18a165b37b1591e9ae4daff1c59dc9 (patch)
tree81d1584c0cd865ac5aaa2edf24f4279053e1dac6 /sound
parent694073f99afb09f26a699e703349533568553258 (diff)
downloadkernel_samsung_crespo-402c3fe70a18a165b37b1591e9ae4daff1c59dc9.zip
kernel_samsung_crespo-402c3fe70a18a165b37b1591e9ae4daff1c59dc9.tar.gz
kernel_samsung_crespo-402c3fe70a18a165b37b1591e9ae4daff1c59dc9.tar.bz2
ASoC: Remove inline from wm8994_read()
It can't be inlined as we keep references to it and refer to it in other compilation units. Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
Diffstat (limited to 'sound')
-rwxr-xr-xsound/soc/codecs/wm8994_samsung.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/soc/codecs/wm8994_samsung.c b/sound/soc/codecs/wm8994_samsung.c
index 3b96452..adfb009 100755
--- a/sound/soc/codecs/wm8994_samsung.c
+++ b/sound/soc/codecs/wm8994_samsung.c
@@ -189,7 +189,7 @@ int wm8994_write(struct snd_soc_codec *codec, unsigned int reg,
}
}
-inline unsigned int wm8994_read(struct snd_soc_codec *codec, unsigned int reg)
+unsigned int wm8994_read(struct snd_soc_codec *codec, unsigned int reg)
{
return wm8994_read_hw(codec, reg);
}