]> git.proxmox.com Git - mirror_ubuntu-hirsute-kernel.git/commitdiff
ASoC: au1x: db1000: use modern dai_link style
authorKuninori Morimoto <kuninori.morimoto.gx@renesas.com>
Thu, 6 Jun 2019 04:14:09 +0000 (13:14 +0900)
committerMark Brown <broonie@kernel.org>
Thu, 6 Jun 2019 20:40:09 +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/au1x/db1000.c

index e97c32798e98a066dba2eaf47883584f7eb04dad..5819b897bdd84059b837d14418a1da92312756c8 100644 (file)
 
 #include "psc.h"
 
+SND_SOC_DAILINK_DEFS(hifi,
+       DAILINK_COMP_ARRAY(COMP_CPU("alchemy-ac97c")),
+       DAILINK_COMP_ARRAY(COMP_CODEC("ac97-codec", "ac97-hifi")),
+       DAILINK_COMP_ARRAY(COMP_PLATFORM("alchemy-pcm-dma.0")));
+
 static struct snd_soc_dai_link db1000_ac97_dai = {
        .name           = "AC97",
        .stream_name    = "AC97 HiFi",
-       .codec_dai_name = "ac97-hifi",
-       .cpu_dai_name   = "alchemy-ac97c",
-       .platform_name  = "alchemy-pcm-dma.0",
-       .codec_name     = "ac97-codec",
+       SND_SOC_DAILINK_REG(hifi),
 };
 
 static struct snd_soc_card db1000_ac97 = {