diff options
author | Sachin Kamat <sachin.kamat@linaro.org> | 2014-01-23 16:23:26 +0530 |
---|---|---|
committer | Mark Brown <broonie@linaro.org> | 2014-01-23 12:22:11 +0000 |
commit | 0cf0f174400d6953df8c09ed5ed92b37ec7a675b (patch) | |
tree | b157d5cfc7adb656729c0dff7d40c46241f41c9d /sound | |
parent | d8ec26d7f8287f5788a494f56e8814210f0e64be (diff) | |
download | linux-0cf0f174400d6953df8c09ed5ed92b37ec7a675b.tar.gz linux-0cf0f174400d6953df8c09ed5ed92b37ec7a675b.tar.bz2 linux-0cf0f174400d6953df8c09ed5ed92b37ec7a675b.zip |
ASoC: wm5100: Export wm5100_detect
Export the symbol so that it is accessible to modules. Fixes the
following error:
ERROR: "wm5100_detect" [sound/soc/samsung/snd-soc-lowland.ko] undefined!
Signed-off-by: Sachin Kamat <sachin.kamat@linaro.org>
Acked-by: Charles Keepax <ckeepax@opensource.wolfsonmicro.com>
Signed-off-by: Mark Brown <broonie@linaro.org>
Diffstat (limited to 'sound')
-rw-r--r-- | sound/soc/codecs/wm5100.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/sound/soc/codecs/wm5100.c b/sound/soc/codecs/wm5100.c index 4cf91deabc02..4e3e31aaf509 100644 --- a/sound/soc/codecs/wm5100.c +++ b/sound/soc/codecs/wm5100.c @@ -14,6 +14,7 @@ #include <linux/moduleparam.h> #include <linux/init.h> #include <linux/delay.h> +#include <linux/export.h> #include <linux/pm.h> #include <linux/gcd.h> #include <linux/gpio.h> @@ -2141,6 +2142,7 @@ int wm5100_detect(struct snd_soc_codec *codec, struct snd_soc_jack *jack) return 0; } +EXPORT_SYMBOL_GPL(wm5100_detect); static irqreturn_t wm5100_irq(int irq, void *data) { |