diff options
author | Kuninori Morimoto <kuninori.morimoto.gx@renesas.com> | 2016-11-11 01:19:28 +0000 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2016-11-11 15:19:34 +0000 |
commit | 1ad8ec535b997ed36c0f32c2616206725258dd30 (patch) | |
tree | 938c89bdb1aed2c382d2156ff0b009bc6bfe34b2 /sound/soc/soc-core.c | |
parent | 7364c8dc255232db33bcd1c5b19eb8f34cf6108a (diff) | |
download | lwn-1ad8ec535b997ed36c0f32c2616206725258dd30.tar.gz lwn-1ad8ec535b997ed36c0f32c2616206725258dd30.zip |
ASoC: soc-core: snd_soc_get_dai_name() become non static
snd_soc_get_dai_name() is used from snd_soc_of_get_dai_name(),
and it is assuming that DT is using "sound-dai" / "#sound-dai-cells".
But graph base DT is using "remote-endpoint". This patch makes
snd_soc_get_dai_name() non static for graph support.
Signed-off-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'sound/soc/soc-core.c')
-rw-r--r-- | sound/soc/soc-core.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sound/soc/soc-core.c b/sound/soc/soc-core.c index ec881b8825b6..81b604151f26 100644 --- a/sound/soc/soc-core.c +++ b/sound/soc/soc-core.c @@ -3787,7 +3787,7 @@ unsigned int snd_soc_of_parse_daifmt(struct device_node *np, } EXPORT_SYMBOL_GPL(snd_soc_of_parse_daifmt); -static int snd_soc_get_dai_name(struct of_phandle_args *args, +int snd_soc_get_dai_name(struct of_phandle_args *args, const char **dai_name) { struct snd_soc_component *pos; @@ -3839,6 +3839,7 @@ static int snd_soc_get_dai_name(struct of_phandle_args *args, mutex_unlock(&client_mutex); return ret; } +EXPORT_SYMBOL_GPL(snd_soc_get_dai_name); int snd_soc_of_get_dai_name(struct device_node *of_node, const char **dai_name) |