ASoC: fsl: pcm030-audio-fabric: use modern dai_link style
authorKuninori Morimoto <kuninori.morimoto.gx@renesas.com>
Thu, 6 Jun 2019 04:16:14 +0000 (13:16 +0900)
committerMark Brown <broonie@kernel.org>
Thu, 6 Jun 2019 20:43:43 +0000 (21:43 +0100)
ASoC is now supporting modern style dai_link
(= snd_soc_dai_link_component) for CPU/Codec/Platform.
This patch switches to use it.

Signed-off-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
sound/soc/fsl/pcm030-audio-fabric.c

index a7fe4ad..af3c3b9 100644 (file)
@@ -23,20 +23,26 @@ struct pcm030_audio_data {
        struct platform_device *codec_device;
 };
 
+SND_SOC_DAILINK_DEFS(analog,
+       DAILINK_COMP_ARRAY(COMP_CPU("mpc5200-psc-ac97.0")),
+       DAILINK_COMP_ARRAY(COMP_CODEC("wm9712-codec", "wm9712-hifi")),
+       DAILINK_COMP_ARRAY(COMP_EMPTY()));
+
+SND_SOC_DAILINK_DEFS(iec958,
+       DAILINK_COMP_ARRAY(COMP_CPU("mpc5200-psc-ac97.1")),
+       DAILINK_COMP_ARRAY(COMP_CODEC("wm9712-codec", "wm9712-aux")),
+       DAILINK_COMP_ARRAY(COMP_EMPTY()));
+
 static struct snd_soc_dai_link pcm030_fabric_dai[] = {
 {
        .name = "AC97.0",
        .stream_name = "AC97 Analog",
-       .codec_dai_name = "wm9712-hifi",
-       .cpu_dai_name = "mpc5200-psc-ac97.0",
-       .codec_name = "wm9712-codec",
+       SND_SOC_DAILINK_REG(analog),
 },
 {
        .name = "AC97.1",
        .stream_name = "AC97 IEC958",
-       .codec_dai_name = "wm9712-aux",
-       .cpu_dai_name = "mpc5200-psc-ac97.1",
-       .codec_name = "wm9712-codec",
+       SND_SOC_DAILINK_REG(iec958),
 },
 };
 
@@ -76,7 +82,7 @@ static int pcm030_fabric_probe(struct platform_device *op)
        }
 
        for_each_card_prelinks(card, i, dai_link)
-               dai_link->platform_of_node = platform_np;
+               dai_link->platforms->of_node = platform_np;
 
        ret = request_module("snd-soc-wm9712");
        if (ret)