]> git.proxmox.com Git - mirror_ubuntu-jammy-kernel.git/commitdiff
ASoC: qcom: storm: use modern dai_link style
authorKuninori Morimoto <kuninori.morimoto.gx@renesas.com>
Thu, 6 Jun 2019 04:16:51 +0000 (13:16 +0900)
committerMark Brown <broonie@kernel.org>
Thu, 6 Jun 2019 20:45:21 +0000 (21:45 +0100)
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>
sound/soc/qcom/storm.c

index a9fa972466ad155fd4b681bdb530bd953b13e55a..672edee2ea93d2aade43c8578df865a52c4c823b 100644 (file)
@@ -61,11 +61,16 @@ static const struct snd_soc_ops storm_soc_ops = {
        .hw_params      = storm_ops_hw_params,
 };
 
+SND_SOC_DAILINK_DEFS(hifi,
+       DAILINK_COMP_ARRAY(COMP_EMPTY()),
+       DAILINK_COMP_ARRAY(COMP_CODEC(NULL, "HiFi")),
+       DAILINK_COMP_ARRAY(COMP_EMPTY()));
+
 static struct snd_soc_dai_link storm_dai_link = {
        .name           = "Primary",
        .stream_name    = "Primary",
-       .codec_dai_name = "HiFi",
        .ops            = &storm_soc_ops,
+       SND_SOC_DAILINK_REG(hifi),
 };
 
 static int storm_parse_of(struct snd_soc_card *card)
@@ -73,15 +78,15 @@ static int storm_parse_of(struct snd_soc_card *card)
        struct snd_soc_dai_link *dai_link = card->dai_link;
        struct device_node *np = card->dev->of_node;
 
-       dai_link->cpu_of_node = of_parse_phandle(np, "cpu", 0);
-       if (!dai_link->cpu_of_node) {
+       dai_link->cpus->of_node = of_parse_phandle(np, "cpu", 0);
+       if (!dai_link->cpus->of_node) {
                dev_err(card->dev, "error getting cpu phandle\n");
                return -EINVAL;
        }
-       dai_link->platform_of_node = dai_link->cpu_of_node;
+       dai_link->platforms->of_node = dai_link->cpus->of_node;
 
-       dai_link->codec_of_node = of_parse_phandle(np, "codec", 0);
-       if (!dai_link->codec_of_node) {
+       dai_link->codecs->of_node = of_parse_phandle(np, "codec", 0);
+       if (!dai_link->codecs->of_node) {
                dev_err(card->dev, "error getting codec phandle\n");
                return -EINVAL;
        }