diff options
author | Kuninori Morimoto <kuninori.morimoto.gx@renesas.com> | 2019-06-06 00:18:25 -0400 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2019-06-06 17:07:55 -0400 |
commit | f4010b4c8b382c2acb024fd91e2734323e457f98 (patch) | |
tree | 0a992608cb7f71687a804a323da34f1ed0920115 | |
parent | 950d10e879d4a263ca10ab1ff9657a258208e7b9 (diff) |
ASoC: txx9: txx9aclc-generic: use modern dai_link style
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>
-rw-r--r-- | sound/soc/txx9/txx9aclc-generic.c | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/sound/soc/txx9/txx9aclc-generic.c b/sound/soc/txx9/txx9aclc-generic.c index d0b1e7759968..c5aaad158280 100644 --- a/sound/soc/txx9/txx9aclc-generic.c +++ b/sound/soc/txx9/txx9aclc-generic.c | |||
@@ -21,13 +21,15 @@ | |||
21 | #include <sound/soc.h> | 21 | #include <sound/soc.h> |
22 | #include "txx9aclc.h" | 22 | #include "txx9aclc.h" |
23 | 23 | ||
24 | SND_SOC_DAILINK_DEFS(hifi, | ||
25 | DAILINK_COMP_ARRAY(COMP_CPU("txx9aclc-ac97")), | ||
26 | DAILINK_COMP_ARRAY(COMP_CODEC("ac97-codec", "ac97-hifi")), | ||
27 | DAILINK_COMP_ARRAY(COMP_PLATFORM("txx9aclc-pcm-audio"))); | ||
28 | |||
24 | static struct snd_soc_dai_link txx9aclc_generic_dai = { | 29 | static struct snd_soc_dai_link txx9aclc_generic_dai = { |
25 | .name = "AC97", | 30 | .name = "AC97", |
26 | .stream_name = "AC97 HiFi", | 31 | .stream_name = "AC97 HiFi", |
27 | .cpu_dai_name = "txx9aclc-ac97", | 32 | SND_SOC_DAILINK_REG(hifi), |
28 | .codec_dai_name = "ac97-hifi", | ||
29 | .platform_name = "txx9aclc-pcm-audio", | ||
30 | .codec_name = "ac97-codec", | ||
31 | }; | 33 | }; |
32 | 34 | ||
33 | static struct snd_soc_card txx9aclc_generic_card = { | 35 | static struct snd_soc_card txx9aclc_generic_card = { |