aboutsummaryrefslogtreecommitdiffstats
path: root/include/sound
diff options
context:
space:
mode:
authorKuninori Morimoto <kuninori.morimoto.gx@renesas.com>2016-08-08 02:01:43 -0400
committerMark Brown <broonie@kernel.org>2016-08-08 06:35:51 -0400
commitae30a694da4c37b4d0c8b750c9a4104d8da749b3 (patch)
treea58f8341e9fa091010cc046035f4e0be81390ffd /include/sound
parentbb6fc620c2ed972f58a0174f64f8dbd22a5911b1 (diff)
ASoC: simple-card-utils: add asoc_simple_card_parse_dai()
simple-card needs to get its dai name and endpoint node. This patch makes it simple style standard Signed-off-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com> Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'include/sound')
-rw-r--r--include/sound/simple_card_utils.h17
1 files changed, 17 insertions, 0 deletions
diff --git a/include/sound/simple_card_utils.h b/include/sound/simple_card_utils.h
index 1392eb56cf0e..62b392695d2d 100644
--- a/include/sound/simple_card_utils.h
+++ b/include/sound/simple_card_utils.h
@@ -41,4 +41,21 @@ int asoc_simple_card_parse_clk(struct device_node *node,
41 struct device_node *dai_of_node, 41 struct device_node *dai_of_node,
42 struct asoc_simple_dai *simple_dai); 42 struct asoc_simple_dai *simple_dai);
43 43
44#define asoc_simple_card_parse_cpu(node, dai_link, \
45 list_name, cells_name, is_single_link) \
46 asoc_simple_card_parse_dai(node, &dai_link->cpu_of_node, \
47 &dai_link->cpu_dai_name, list_name, cells_name, is_single_link)
48#define asoc_simple_card_parse_codec(node, dai_link, list_name, cells_name) \
49 asoc_simple_card_parse_dai(node, &dai_link->codec_of_node, \
50 &dai_link->codec_dai_name, list_name, cells_name, NULL)
51#define asoc_simple_card_parse_platform(node, dai_link, list_name, cells_name) \
52 asoc_simple_card_parse_dai(node, &dai_link->platform_of_node, \
53 NULL, list_name, cells_name, NULL)
54int asoc_simple_card_parse_dai(struct device_node *node,
55 struct device_node **endpoint_np,
56 const char **dai_name,
57 const char *list_name,
58 const char *cells_name,
59 int *is_single_links);
60
44#endif /* __SIMPLE_CARD_CORE_H */ 61#endif /* __SIMPLE_CARD_CORE_H */