[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <9eb276ed-5b4c-9926-a885-2cfd08d4d126@linaro.org>
Date: Thu, 8 Nov 2018 13:56:35 +0000
From: Srinivas Kandagatla <srinivas.kandagatla@...aro.org>
To: Rohit kumar <rohitkr@...eaurora.org>, plai@...eaurora.org,
bgoswami@...eaurora.org, lgirdwood@...il.com, broonie@...nel.org,
perex@...ex.cz, tiwai@...e.com, alsa-devel@...a-project.org,
linux-kernel@...r.kernel.org, rohkumar@....qualcomm.com
Subject: Re: [PATCH] ASoC: qcom: Set dai_link id to each dai_link
Hi Rohit,
On 08/11/18 13:41, Rohit kumar wrote:
> Frontend dai_link id is used for closing ADM sessions.
> During concurrent usecase when one session is closed,
> it closes other ADM session associated with other usecase
> too. Dai_link->id should always point to Frontend dai id.
> Set cpu_dai id as dai_link id to fix the issue.
>
Nice catch! thanks for fixing this!
> Signed-off-by: Rohit kumar <rohitkr@...eaurora.org>
Acked-by: Srinivas Kandagatla <srinivas.kandagatla@...aro.org>
> ---
> sound/soc/qcom/common.c | 9 ++++++---
> 1 file changed, 6 insertions(+), 3 deletions(-)
>
> diff --git a/sound/soc/qcom/common.c b/sound/soc/qcom/common.c
> index eb1b9da..4715527 100644
> --- a/sound/soc/qcom/common.c
> +++ b/sound/soc/qcom/common.c
> @@ -13,6 +13,7 @@ int qcom_snd_parse_of(struct snd_soc_card *card)
> struct device_node *cpu = NULL;
> struct device *dev = card->dev;
> struct snd_soc_dai_link *link;
> + struct of_phandle_args args;
> int ret, num_links;
>
> ret = snd_soc_of_parse_card_name(card, "model");
> @@ -47,12 +48,14 @@ int qcom_snd_parse_of(struct snd_soc_card *card)
> goto err;
> }
>
> - link->cpu_of_node = of_parse_phandle(cpu, "sound-dai", 0);
> - if (!link->cpu_of_node) {
> + ret = of_parse_phandle_with_args(cpu, "sound-dai",
> + "#sound-dai-cells", 0, &args);
> + if (ret) {
> dev_err(card->dev, "error getting cpu phandle\n");
> - ret = -EINVAL;
> goto err;
> }
> + link->cpu_of_node = args.np;
> + link->id = args.args[0];
>
> ret = snd_soc_of_get_dai_name(cpu, &link->cpu_dai_name);
> if (ret) {
>
Powered by blists - more mailing lists