ASoC: rsnd: remove unneeded "is_graph" from __rsnd_dai_probe()
Signed-off-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com> Signed-off-by: Mark Brown <broonie@kernel.org>
This commit is contained in:
parent
d8d9b9730c
commit
9f76118394
@ -1017,7 +1017,7 @@ of_node_compatible:
|
|||||||
|
|
||||||
static void __rsnd_dai_probe(struct rsnd_priv *priv,
|
static void __rsnd_dai_probe(struct rsnd_priv *priv,
|
||||||
struct device_node *dai_np,
|
struct device_node *dai_np,
|
||||||
int dai_i, int is_graph)
|
int dai_i)
|
||||||
{
|
{
|
||||||
struct device_node *playback, *capture;
|
struct device_node *playback, *capture;
|
||||||
struct rsnd_dai_stream *io_playback;
|
struct rsnd_dai_stream *io_playback;
|
||||||
@ -1116,13 +1116,13 @@ static int rsnd_dai_probe(struct rsnd_priv *priv)
|
|||||||
dai_i = 0;
|
dai_i = 0;
|
||||||
if (is_graph) {
|
if (is_graph) {
|
||||||
for_each_endpoint_of_node(dai_node, dai_np) {
|
for_each_endpoint_of_node(dai_node, dai_np) {
|
||||||
__rsnd_dai_probe(priv, dai_np, dai_i, is_graph);
|
__rsnd_dai_probe(priv, dai_np, dai_i);
|
||||||
rsnd_ssi_parse_hdmi_connection(priv, dai_np, dai_i);
|
rsnd_ssi_parse_hdmi_connection(priv, dai_np, dai_i);
|
||||||
dai_i++;
|
dai_i++;
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
for_each_child_of_node(dai_node, dai_np)
|
for_each_child_of_node(dai_node, dai_np)
|
||||||
__rsnd_dai_probe(priv, dai_np, dai_i++, is_graph);
|
__rsnd_dai_probe(priv, dai_np, dai_i++);
|
||||||
}
|
}
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
|
Loading…
Reference in New Issue
Block a user