summaryrefslogtreecommitdiffstats
path: root/sound/soc/soc-dapm.c
diff options
context:
space:
mode:
authorLiam Girdwood2015-06-04 16:13:09 +0200
committerMark Brown2015-06-04 17:25:26 +0200
commitcc76e7def0fa27b5f42aea54e34c96b4bddaf30a (patch)
tree747c3d01bfea3f2a3bde47d3b92a82dbcd05d4e6 /sound/soc/soc-dapm.c
parentASoC: dapm: fix snd_soc_dapm_new_control() implicit declaration (diff)
downloadkernel-qcow2-linux-cc76e7def0fa27b5f42aea54e34c96b4bddaf30a.tar.gz
kernel-qcow2-linux-cc76e7def0fa27b5f42aea54e34c96b4bddaf30a.tar.xz
kernel-qcow2-linux-cc76e7def0fa27b5f42aea54e34c96b4bddaf30a.zip
ASoC: dapm: fix build errors for missing snd_soc_dapm_new_control symbol
Fix the following error:- All error/warnings (new ones prefixed by >>): > > sound/built-in.o: In function `soc_tplg_dapm_widget_create': > >> :(.text+0x25a90): undefined reference to `snd_soc_dapm_new_control' Signed-off-by: Liam Girdwood <liam.r.girdwood@linux.intel.com> Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'sound/soc/soc-dapm.c')
-rw-r--r--sound/soc/soc-dapm.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sound/soc/soc-dapm.c b/sound/soc/soc-dapm.c
index 92d57a952bd9..1b4a6eb43174 100644
--- a/sound/soc/soc-dapm.c
+++ b/sound/soc/soc-dapm.c
@@ -53,7 +53,7 @@ static int snd_soc_dapm_add_path(struct snd_soc_dapm_context *dapm,
int (*connected)(struct snd_soc_dapm_widget *source,
struct snd_soc_dapm_widget *sink));
-static struct snd_soc_dapm_widget *
+struct snd_soc_dapm_widget *
snd_soc_dapm_new_control(struct snd_soc_dapm_context *dapm,
const struct snd_soc_dapm_widget *widget);
@@ -3270,7 +3270,7 @@ int snd_soc_dapm_put_pin_switch(struct snd_kcontrol *kcontrol,
}
EXPORT_SYMBOL_GPL(snd_soc_dapm_put_pin_switch);
-static struct snd_soc_dapm_widget *
+struct snd_soc_dapm_widget *
snd_soc_dapm_new_control(struct snd_soc_dapm_context *dapm,
const struct snd_soc_dapm_widget *widget)
{