Commit 112a2ab5 authored by Kuninori Morimoto's avatar Kuninori Morimoto Committed by Mark Brown

ASoC: simple-scu-card: tidyup codec daifmt handling method

Current simple-scu-card is handling codec daifmt by using
for_each_child_of_node(), and low-level method.
Let's use of_get_child_by_name() instead it
Signed-off-by: default avatarKuninori Morimoto <kuninori.morimoto.gx@renesas.com>
Signed-off-by: default avatarMark Brown <broonie@kernel.org>
parent 93bc047d
......@@ -212,19 +212,14 @@ static int asoc_simple_card_dai_link_of(struct device_node *node,
bool is_fe;
/* find 1st codec */
i = 0;
for_each_child_of_node(node, np) {
dai_link = simple_priv_to_link(priv, i);
np = of_get_child_by_name(node, PREFIX "codec");
if (!np)
return -ENODEV;
if (strcmp(np->name, PREFIX "codec") == 0) {
ret = asoc_simple_card_parse_daifmt(dev, node, np,
PREFIX, &daifmt);
if (ret < 0)
return ret;
break;
}
i++;
}
ret = asoc_simple_card_parse_daifmt(dev, node, np,
PREFIX, &daifmt);
if (ret < 0)
return ret;
i = 0;
for_each_child_of_node(node, np) {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment