Commit 0310820c authored by Kuninori Morimoto's avatar Kuninori Morimoto Committed by Mark Brown

ASoC: tidyup for_each_card_prelinks() dai_link

commit 7fe072b4 ("ASoC: add for_each_card_prelinks() macro")
added new for_each_card_prelinks() macro, but it had typo.
This patch fixup it
Signed-off-by: default avatarKuninori Morimoto <kuninori.morimoto.gx@renesas.com>
Signed-off-by: default avatarMark Brown <broonie@kernel.org>
parent fc795bf7
...@@ -311,9 +311,9 @@ static int mt2701_cs42448_machine_probe(struct platform_device *pdev) ...@@ -311,9 +311,9 @@ static int mt2701_cs42448_machine_probe(struct platform_device *pdev)
return -EINVAL; return -EINVAL;
} }
for_each_card_prelinks(card, i, dai_link) { for_each_card_prelinks(card, i, dai_link) {
if (dai_links->platform_name) if (dai_link->platform_name)
continue; continue;
dai_links->platform_of_node = platform_node; dai_link->platform_of_node = platform_node;
} }
card->dev = dev; card->dev = dev;
...@@ -326,9 +326,9 @@ static int mt2701_cs42448_machine_probe(struct platform_device *pdev) ...@@ -326,9 +326,9 @@ static int mt2701_cs42448_machine_probe(struct platform_device *pdev)
return -EINVAL; return -EINVAL;
} }
for_each_card_prelinks(card, i, dai_link) { for_each_card_prelinks(card, i, dai_link) {
if (dai_links->codec_name) if (dai_link->codec_name)
continue; continue;
dai_links->codec_of_node = codec_node; dai_link->codec_of_node = codec_node;
} }
codec_node_bt_mrg = of_parse_phandle(pdev->dev.of_node, codec_node_bt_mrg = of_parse_phandle(pdev->dev.of_node,
......
...@@ -107,9 +107,9 @@ static int mt2701_wm8960_machine_probe(struct platform_device *pdev) ...@@ -107,9 +107,9 @@ static int mt2701_wm8960_machine_probe(struct platform_device *pdev)
return -EINVAL; return -EINVAL;
} }
for_each_card_prelinks(card, i, dai_link) { for_each_card_prelinks(card, i, dai_link) {
if (dai_links->platform_name) if (dai_link->platform_name)
continue; continue;
dai_links->platform_of_node = platform_node; dai_link->platform_of_node = platform_node;
} }
card->dev = &pdev->dev; card->dev = &pdev->dev;
...@@ -122,9 +122,9 @@ static int mt2701_wm8960_machine_probe(struct platform_device *pdev) ...@@ -122,9 +122,9 @@ static int mt2701_wm8960_machine_probe(struct platform_device *pdev)
return -EINVAL; return -EINVAL;
} }
for_each_card_prelinks(card, i, dai_link) { for_each_card_prelinks(card, i, dai_link) {
if (dai_links->codec_name) if (dai_link->codec_name)
continue; continue;
dai_links->codec_of_node = codec_node; dai_link->codec_of_node = codec_node;
} }
ret = snd_soc_of_parse_audio_routing(card, "audio-routing"); ret = snd_soc_of_parse_audio_routing(card, "audio-routing");
......
...@@ -172,7 +172,7 @@ static int mt6797_mt6351_dev_probe(struct platform_device *pdev) ...@@ -172,7 +172,7 @@ static int mt6797_mt6351_dev_probe(struct platform_device *pdev)
for_each_card_prelinks(card, i, dai_link) { for_each_card_prelinks(card, i, dai_link) {
if (dai_link->platform_name) if (dai_link->platform_name)
continue; continue;
dai_links->platform_of_node = platform_node; dai_link->platform_of_node = platform_node;
} }
codec_node = of_parse_phandle(pdev->dev.of_node, codec_node = of_parse_phandle(pdev->dev.of_node,
...@@ -183,9 +183,9 @@ static int mt6797_mt6351_dev_probe(struct platform_device *pdev) ...@@ -183,9 +183,9 @@ static int mt6797_mt6351_dev_probe(struct platform_device *pdev)
return -EINVAL; return -EINVAL;
} }
for_each_card_prelinks(card, i, dai_link) { for_each_card_prelinks(card, i, dai_link) {
if (dai_links->codec_name) if (dai_link->codec_name)
continue; continue;
dai_links->codec_of_node = codec_node; dai_link->codec_of_node = codec_node;
} }
ret = devm_snd_soc_register_card(&pdev->dev, card); ret = devm_snd_soc_register_card(&pdev->dev, card);
......
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