ASoC: cirrus: simone: use modern dai_link style
authorKuninori Morimoto <kuninori.morimoto.gx@renesas.com>
Thu, 6 Jun 2019 04:14:22 +0000 (13:14 +0900)
committerMark Brown <broonie@kernel.org>
Thu, 6 Jun 2019 20:40:48 +0000 (21:40 +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/cirrus/simone.c

index cb850530331b75129c06d674f5c64b9ce7037885..88b082c15c663b94c762f8a43a7030e596c0afd1 100644 (file)
 
 #include <asm/mach-types.h>
 
+SND_SOC_DAILINK_DEFS(hifi,
+       DAILINK_COMP_ARRAY(COMP_CPU("ep93xx-ac97")),
+       DAILINK_COMP_ARRAY(COMP_CODEC("ac97-codec", "ac97-hifi")),
+       DAILINK_COMP_ARRAY(COMP_PLATFORM("ep93xx-ac97")));
+
 static struct snd_soc_dai_link simone_dai = {
        .name           = "AC97",
        .stream_name    = "AC97 HiFi",
-       .cpu_dai_name   = "ep93xx-ac97",
-       .codec_dai_name = "ac97-hifi",
-       .codec_name     = "ac97-codec",
-       .platform_name  = "ep93xx-ac97",
+       SND_SOC_DAILINK_REG(hifi),
 };
 
 static struct snd_soc_card snd_soc_simone = {