]> asedeno.scripts.mit.edu Git - linux.git/commitdiff
ASoC: fsl: eukrea-tlv320: don't select unnecessary Platform
authorKuninori Morimoto <kuninori.morimoto.gx@renesas.com>
Wed, 19 Jun 2019 01:16:42 +0000 (10:16 +0900)
committerMark Brown <broonie@kernel.org>
Wed, 19 Jun 2019 11:50:02 +0000 (12:50 +0100)
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>
sound/soc/fsl/eukrea-tlv320.c

index 6f3b768489f6f1e00fe6bc8d9e01a1c0f0eaadba..1ed409d423c388695e70e8be01d49c0febf10775 100644 (file)
@@ -63,8 +63,7 @@ static const struct snd_soc_ops eukrea_tlv320_snd_ops = {
 
 SND_SOC_DAILINK_DEFS(hifi,
        DAILINK_COMP_ARRAY(COMP_EMPTY()),
-       DAILINK_COMP_ARRAY(COMP_CODEC(NULL, "tlv320aic23-hifi")),
-       DAILINK_COMP_ARRAY(COMP_EMPTY()));
+       DAILINK_COMP_ARRAY(COMP_CODEC(NULL, "tlv320aic23-hifi")));
 
 static struct snd_soc_dai_link eukrea_tlv320_dai = {
        .name           = "tlv320aic23",
@@ -134,10 +133,8 @@ static int eukrea_tlv320_probe(struct platform_device *pdev)
                ext_port--;
 
                eukrea_tlv320_dai.cpus->of_node = ssi_np;
-               eukrea_tlv320_dai.platforms->of_node = ssi_np;
        } else {
                eukrea_tlv320_dai.cpus->dai_name = "imx-ssi.0";
-               eukrea_tlv320_dai.platforms->name = "imx-ssi.0";
                eukrea_tlv320_dai.codecs->name = "tlv320aic23-codec.0-001a";
                eukrea_tlv320.name = "cpuimx-audio";
        }