]> git.ipfire.org Git - thirdparty/kernel/stable.git/commitdiff
ASoC: loongson: Fix component check failed on FDT systems
authorBinbin Zhou <zhoubinbin@loongson.cn>
Wed, 9 Oct 2024 07:52:27 +0000 (15:52 +0800)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Fri, 1 Nov 2024 01:02:38 +0000 (02:02 +0100)
[ Upstream commit a6134e7b4d4a14e0942f113a6df1d518baa2a0a4 ]

Add missing snd_soc_dai_link.platforms assignment to avoid
soc_dai_link_sanity_check() failure.

Fixes: d24028606e76 ("ASoC: loongson: Add Loongson ASoC Sound Card Support")
Signed-off-by: Binbin Zhou <zhoubinbin@loongson.cn>
Link: https://patch.msgid.link/6645888f2f9e8a1d8d799109f867d0f97fd78c58.1728459624.git.zhoubinbin@loongson.cn
Signed-off-by: Mark Brown <broonie@kernel.org>
Signed-off-by: Sasha Levin <sashal@kernel.org>
sound/soc/loongson/loongson_card.c

index 2c8dbdba27c5f8e2f915385129ef82ee0fe35602..cc0bb6f9772e18446791694d6afeeab9c36a95b3 100644 (file)
@@ -137,6 +137,7 @@ static int loongson_card_parse_of(struct loongson_card_data *data)
                        dev_err(dev, "getting cpu dlc error (%d)\n", ret);
                        goto err;
                }
+               loongson_dai_links[i].platforms->of_node = loongson_dai_links[i].cpus->of_node;
 
                ret = snd_soc_of_get_dlc(codec, NULL, loongson_dai_links[i].codecs, 0);
                if (ret < 0) {