diff options
author | Kuninori Morimoto <kuninori.morimoto.gx@renesas.com> | 2019-06-06 00:14:44 -0400 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2019-06-06 16:41:37 -0400 |
commit | 22bda69c650247008a7c3a1035d239194cb95bde (patch) | |
tree | 581373c757e7eab00c389c7dd787e39bbb7ef26f /sound/soc/fsl | |
parent | 8337ef4f48876dc4ea9d869a6983c659f65f55bb (diff) |
ASoC: fsl: mx27vis-aic32x4: 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>
Diffstat (limited to 'sound/soc/fsl')
-rw-r--r-- | sound/soc/fsl/mx27vis-aic32x4.c | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/sound/soc/fsl/mx27vis-aic32x4.c b/sound/soc/fsl/mx27vis-aic32x4.c index 37a4520aef62..38ac4a397742 100644 --- a/sound/soc/fsl/mx27vis-aic32x4.c +++ b/sound/soc/fsl/mx27vis-aic32x4.c | |||
@@ -132,16 +132,19 @@ static const struct snd_soc_dapm_route aic32x4_dapm_routes[] = { | |||
132 | {"IN3_L", NULL, "Mic Bias"}, | 132 | {"IN3_L", NULL, "Mic Bias"}, |
133 | }; | 133 | }; |
134 | 134 | ||
135 | SND_SOC_DAILINK_DEFS(hifi, | ||
136 | DAILINK_COMP_ARRAY(COMP_CPU("imx-ssi.0")), | ||
137 | DAILINK_COMP_ARRAY(COMP_CODEC("tlv320aic32x4.0-0018", | ||
138 | "tlv320aic32x4-hifi")), | ||
139 | DAILINK_COMP_ARRAY(COMP_PLATFORM("imx-ssi.0"))); | ||
140 | |||
135 | static struct snd_soc_dai_link mx27vis_aic32x4_dai = { | 141 | static struct snd_soc_dai_link mx27vis_aic32x4_dai = { |
136 | .name = "tlv320aic32x4", | 142 | .name = "tlv320aic32x4", |
137 | .stream_name = "TLV320AIC32X4", | 143 | .stream_name = "TLV320AIC32X4", |
138 | .codec_dai_name = "tlv320aic32x4-hifi", | ||
139 | .platform_name = "imx-ssi.0", | ||
140 | .codec_name = "tlv320aic32x4.0-0018", | ||
141 | .cpu_dai_name = "imx-ssi.0", | ||
142 | .dai_fmt = SND_SOC_DAIFMT_DSP_B | SND_SOC_DAIFMT_NB_NF | | 144 | .dai_fmt = SND_SOC_DAIFMT_DSP_B | SND_SOC_DAIFMT_NB_NF | |
143 | SND_SOC_DAIFMT_CBM_CFM, | 145 | SND_SOC_DAIFMT_CBM_CFM, |
144 | .ops = &mx27vis_aic32x4_snd_ops, | 146 | .ops = &mx27vis_aic32x4_snd_ops, |
147 | SND_SOC_DAILINK_REG(hifi), | ||
145 | }; | 148 | }; |
146 | 149 | ||
147 | static struct snd_soc_card mx27vis_aic32x4 = { | 150 | static struct snd_soc_card mx27vis_aic32x4 = { |