diff options
author | Mark Brown <broonie@kernel.org> | 2016-09-29 15:44:02 -0400 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2016-09-29 15:44:02 -0400 |
commit | 81af726167a12329409151c01ac439a4cea21189 (patch) | |
tree | 11b22100e1a98261ea8b0b1325675a5f87c1c4ac /include/sound | |
parent | 609555213a36359dcadf7f84412d0489961ab085 (diff) | |
parent | 4b9c75eaa4f35504c3ee28d3a354f7b6362dfbe8 (diff) |
Merge remote-tracking branch 'asoc/topic/rcar' into asoc-next
Diffstat (limited to 'include/sound')
-rw-r--r-- | include/sound/simple_card_utils.h | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/include/sound/simple_card_utils.h b/include/sound/simple_card_utils.h index 86088aed9002..403ec92164fc 100644 --- a/include/sound/simple_card_utils.h +++ b/include/sound/simple_card_utils.h | |||
@@ -33,4 +33,38 @@ int asoc_simple_card_set_dailink_name(struct device *dev, | |||
33 | int asoc_simple_card_parse_card_name(struct snd_soc_card *card, | 33 | int asoc_simple_card_parse_card_name(struct snd_soc_card *card, |
34 | char *prefix); | 34 | char *prefix); |
35 | 35 | ||
36 | #define asoc_simple_card_parse_clk_cpu(node, dai_link, simple_dai) \ | ||
37 | asoc_simple_card_parse_clk(node, dai_link->cpu_of_node, simple_dai) | ||
38 | #define asoc_simple_card_parse_clk_codec(node, dai_link, simple_dai) \ | ||
39 | asoc_simple_card_parse_clk(node, dai_link->codec_of_node, simple_dai) | ||
40 | int asoc_simple_card_parse_clk(struct device_node *node, | ||
41 | struct device_node *dai_of_node, | ||
42 | struct asoc_simple_dai *simple_dai); | ||
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) | ||
54 | int 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 | |||
61 | int asoc_simple_card_init_dai(struct snd_soc_dai *dai, | ||
62 | struct asoc_simple_dai *simple_dai); | ||
63 | |||
64 | int asoc_simple_card_canonicalize_dailink(struct snd_soc_dai_link *dai_link); | ||
65 | void asoc_simple_card_canonicalize_cpu(struct snd_soc_dai_link *dai_link, | ||
66 | int is_single_links); | ||
67 | |||
68 | int asoc_simple_card_clean_reference(struct snd_soc_card *card); | ||
69 | |||
36 | #endif /* __SIMPLE_CARD_CORE_H */ | 70 | #endif /* __SIMPLE_CARD_CORE_H */ |