aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKuninori Morimoto <kuninori.morimoto.gx@renesas.com>2016-08-09 22:20:19 -0400
committerMark Brown <broonie@kernel.org>2016-08-10 16:03:25 -0400
commit983cebd602af8c2bf9d5830f15fb4e18fb38f994 (patch)
tree242b5498396bb2bc99cb748006cf2bc17a739a89
parenta09f383ef72947b7d59fc7fe50fe332ab5c35dca (diff)
ASoC: simple-card-utils: add asoc_simple_card_canonicalize_cpu()
simple-card needs remove dai_link->cpu_dai_name if it CPU was single DAI. This patch makes this method simple style standard. Signed-off-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com> Signed-off-by: Mark Brown <broonie@kernel.org>
-rw-r--r--include/sound/simple_card_utils.h2
-rw-r--r--sound/soc/generic/simple-card-utils.c17
2 files changed, 19 insertions, 0 deletions
diff --git a/include/sound/simple_card_utils.h b/include/sound/simple_card_utils.h
index a71d46a95ca8..f760f559393e 100644
--- a/include/sound/simple_card_utils.h
+++ b/include/sound/simple_card_utils.h
@@ -62,5 +62,7 @@ int asoc_simple_card_init_dai(struct snd_soc_dai *dai,
62 struct asoc_simple_dai *simple_dai); 62 struct asoc_simple_dai *simple_dai);
63 63
64int asoc_simple_card_canonicalize_dailink(struct snd_soc_dai_link *dai_link); 64int asoc_simple_card_canonicalize_dailink(struct snd_soc_dai_link *dai_link);
65void asoc_simple_card_canonicalize_cpu(struct snd_soc_dai_link *dai_link,
66 int is_single_links);
65 67
66#endif /* __SIMPLE_CARD_CORE_H */ 68#endif /* __SIMPLE_CARD_CORE_H */
diff --git a/sound/soc/generic/simple-card-utils.c b/sound/soc/generic/simple-card-utils.c
index 189eadddfad3..c5d32dad48b2 100644
--- a/sound/soc/generic/simple-card-utils.c
+++ b/sound/soc/generic/simple-card-utils.c
@@ -206,6 +206,23 @@ int asoc_simple_card_canonicalize_dailink(struct snd_soc_dai_link *dai_link)
206} 206}
207EXPORT_SYMBOL_GPL(asoc_simple_card_canonicalize_dailink); 207EXPORT_SYMBOL_GPL(asoc_simple_card_canonicalize_dailink);
208 208
209void asoc_simple_card_canonicalize_cpu(struct snd_soc_dai_link *dai_link,
210 int is_single_links)
211{
212 /*
213 * In soc_bind_dai_link() will check cpu name after
214 * of_node matching if dai_link has cpu_dai_name.
215 * but, it will never match if name was created by
216 * fmt_single_name() remove cpu_dai_name if cpu_args
217 * was 0. See:
218 * fmt_single_name()
219 * fmt_multiple_name()
220 */
221 if (is_single_links)
222 dai_link->cpu_dai_name = NULL;
223}
224EXPORT_SYMBOL_GPL(asoc_simple_card_canonicalize_cpu);
225
209/* Module information */ 226/* Module information */
210MODULE_AUTHOR("Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>"); 227MODULE_AUTHOR("Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>");
211MODULE_DESCRIPTION("ALSA SoC Simple Card Utils"); 228MODULE_DESCRIPTION("ALSA SoC Simple Card Utils");