aboutsummaryrefslogtreecommitdiffstats
path: root/sound/soc/atmel
diff options
context:
space:
mode:
authorKuninori Morimoto <kuninori.morimoto.gx@renesas.com>2019-06-19 10:16:35 +0900
committerMark Brown <broonie@kernel.org>2019-06-19 12:49:52 +0100
commit655368dfc75e86fc69cb8f92260c675c28929bc8 (patch)
tree1b868384726b2a8130ae4e50f5d94e5e323b5ffd /sound/soc/atmel
parentASoC: atmel: sam9x5_wm8731: don't select unnecessary Platform (diff)
downloadlinux-dev-655368dfc75e86fc69cb8f92260c675c28929bc8.tar.xz
linux-dev-655368dfc75e86fc69cb8f92260c675c28929bc8.zip
ASoC: atmel: tse850-pcm5142: don't select unnecessary Platform
ALSA SoC is now supporting "no Platform". Sound card doesn't need to select "CPU component" as "Platform" anymore if it doesn't need special Platform. This patch removes such settings. Signed-off-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com> Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'sound/soc/atmel')
-rw-r--r--sound/soc/atmel/tse850-pcm5142.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/sound/soc/atmel/tse850-pcm5142.c b/sound/soc/atmel/tse850-pcm5142.c
index 59e2edb22b3a..319acb1676c7 100644
--- a/sound/soc/atmel/tse850-pcm5142.c
+++ b/sound/soc/atmel/tse850-pcm5142.c
@@ -296,8 +296,7 @@ static const struct snd_soc_dapm_route tse850_intercon[] = {
SND_SOC_DAILINK_DEFS(pcm,
DAILINK_COMP_ARRAY(COMP_EMPTY()),
- DAILINK_COMP_ARRAY(COMP_CODEC(NULL, "pcm512x-hifi")),
- DAILINK_COMP_ARRAY(COMP_EMPTY()));
+ DAILINK_COMP_ARRAY(COMP_CODEC(NULL, "pcm512x-hifi")));
static struct snd_soc_dai_link tse850_dailink = {
.name = "TSE-850",
@@ -337,7 +336,6 @@ static int tse850_dt_init(struct platform_device *pdev)
return -EINVAL;
}
dailink->cpus->of_node = cpu_np;
- dailink->platforms->of_node = cpu_np;
of_node_put(cpu_np);
codec_np = of_parse_phandle(np, "axentia,audio-codec", 0);