ASoC: soc-topology.c: remove unnecessary dai_link->platform
[sfrench/cifs-2.6.git] / sound / soc / soc-topology.c
index 07421f5d4ebd8b9d9a95ebae6abd070cd0f7b6ec..7f6424fa59abea55b78af4531784ab185f3b6e85 100644 (file)
@@ -1685,8 +1685,8 @@ static int soc_tplg_fe_link_create(struct soc_tplg *tplg,
        struct snd_soc_dai_link_component *dlc;
        int ret;
 
-       /* link + cpu + codec + platform */
-       link = devm_kzalloc(tplg->dev, sizeof(*link) + (3 * sizeof(*dlc)), GFP_KERNEL);
+       /* link + cpu + codec */
+       link = devm_kzalloc(tplg->dev, sizeof(*link) + (2 * sizeof(*dlc)), GFP_KERNEL);
        if (link == NULL)
                return -ENOMEM;
 
@@ -1694,11 +1694,9 @@ static int soc_tplg_fe_link_create(struct soc_tplg *tplg,
 
        link->cpus      = &dlc[0];
        link->codecs    = &dlc[1];
-       link->platforms = &dlc[2];
 
        link->num_cpus   = 1;
        link->num_codecs = 1;
-       link->num_platforms = 1;
 
        link->dobj.index = tplg->index;
        link->dobj.type = SND_SOC_DOBJ_DAI_LINK;
@@ -1726,8 +1724,6 @@ static int soc_tplg_fe_link_create(struct soc_tplg *tplg,
        link->codecs->name = "snd-soc-dummy";
        link->codecs->dai_name = "snd-soc-dummy-dai";
 
-       link->platforms->name = "snd-soc-dummy";
-
        /* enable DPCM */
        link->dynamic = 1;
        link->ignore_pmdown_time = 1;