All of lore.kernel.org
 help / color / mirror / Atom feed
From: Jean-Francois Moine <moinejf@free.fr>
To: Xiubo Li <Li.Xiubo@freescale.com>
Cc: lgirdwood@gmail.com, broonie@kernel.org, shawn.guo@linaro.org,
	kuninori.morimoto.gx@renesas.com, alsa-devel@alsa-project.org,
	linux-kernel@vger.kernel.org
Subject: Re: [PATCH Resend 2/8] ASoC: simple-card: fix __asoc_simple_card_dai_init
Date: Thu, 23 Jan 2014 08:11:51 +0100	[thread overview]
Message-ID: <20140123081151.35837d3b@armhf> (raw)
In-Reply-To: <1390453370-29194-3-git-send-email-Li.Xiubo@freescale.com>

On Thu, 23 Jan 2014 13:02:44 +0800
Xiubo Li <Li.Xiubo@freescale.com> wrote:

> If the CPU/CODEC DAI set_sysclk() is not support, the -ENOTSUPP will returnd.
> Here do the check like set_fmt().
> 
> Signed-off-by: Xiubo Li <Li.Xiubo@freescale.com>
> ---
> 
> 
> 
> The VF610 Tower and VF610 LS1 platforms' ESAI and SPDIF will depend on this
> patch too.
> 
> 
> 
> 
>  sound/soc/generic/simple-card.c | 17 +++++++++++------
>  1 file changed, 11 insertions(+), 6 deletions(-)
> 
> diff --git a/sound/soc/generic/simple-card.c b/sound/soc/generic/simple-card.c
> index 6443c87..3b8c9a2 100644
> --- a/sound/soc/generic/simple-card.c
> +++ b/sound/soc/generic/simple-card.c
> @@ -31,16 +31,21 @@ static int __asoc_simple_card_dai_init(struct snd_soc_dai *dai,
>  
>  	daifmt |= set->fmt;
>  
> -	if (daifmt)
> +	if (daifmt) {
>  		ret = snd_soc_dai_set_fmt(dai, daifmt);
> -
> -	if (ret == -ENOTSUPP) {
> -		dev_dbg(dai->dev, "ASoC: set_fmt is not supported\n");
> -		ret = 0;
> +		if (ret && ret != -ENOTSUPP) {
> +			dev_err(dai->dev, "simple-card: set_fmt error\n");
> +			return ret;
> +		}
>  	}
>  
> -	if (!ret && set->sysclk)
> +	if (set->sysclk) {
>  		ret = snd_soc_dai_set_sysclk(dai, 0, set->sysclk, 0);
> +		if (ret && ret != -ENOTSUPP) {
> +			dev_err(dai->dev, "simple-card: set_sysclk error\n");
> +			return ret;
> +		}
> +	}
>  
>  	return ret;

Sorry: you must return 0 here

>  }

-- 
Ken ar c'hentañ	|	      ** Breizh ha Linux atav! **
Jef		|		http://moinejf.free.fr/

WARNING: multiple messages have this Message-ID (diff)
From: Jean-Francois Moine <moinejf@free.fr>
To: Xiubo Li <Li.Xiubo@freescale.com>
Cc: <lgirdwood@gmail.com>, <broonie@kernel.org>,
	<shawn.guo@linaro.org>, <kuninori.morimoto.gx@renesas.com>,
	<alsa-devel@alsa-project.org>, <linux-kernel@vger.kernel.org>
Subject: Re: [PATCH Resend 2/8] ASoC: simple-card: fix __asoc_simple_card_dai_init
Date: Thu, 23 Jan 2014 08:11:51 +0100	[thread overview]
Message-ID: <20140123081151.35837d3b@armhf> (raw)
In-Reply-To: <1390453370-29194-3-git-send-email-Li.Xiubo@freescale.com>

On Thu, 23 Jan 2014 13:02:44 +0800
Xiubo Li <Li.Xiubo@freescale.com> wrote:

> If the CPU/CODEC DAI set_sysclk() is not support, the -ENOTSUPP will returnd.
> Here do the check like set_fmt().
> 
> Signed-off-by: Xiubo Li <Li.Xiubo@freescale.com>
> ---
> 
> 
> 
> The VF610 Tower and VF610 LS1 platforms' ESAI and SPDIF will depend on this
> patch too.
> 
> 
> 
> 
>  sound/soc/generic/simple-card.c | 17 +++++++++++------
>  1 file changed, 11 insertions(+), 6 deletions(-)
> 
> diff --git a/sound/soc/generic/simple-card.c b/sound/soc/generic/simple-card.c
> index 6443c87..3b8c9a2 100644
> --- a/sound/soc/generic/simple-card.c
> +++ b/sound/soc/generic/simple-card.c
> @@ -31,16 +31,21 @@ static int __asoc_simple_card_dai_init(struct snd_soc_dai *dai,
>  
>  	daifmt |= set->fmt;
>  
> -	if (daifmt)
> +	if (daifmt) {
>  		ret = snd_soc_dai_set_fmt(dai, daifmt);
> -
> -	if (ret == -ENOTSUPP) {
> -		dev_dbg(dai->dev, "ASoC: set_fmt is not supported\n");
> -		ret = 0;
> +		if (ret && ret != -ENOTSUPP) {
> +			dev_err(dai->dev, "simple-card: set_fmt error\n");
> +			return ret;
> +		}
>  	}
>  
> -	if (!ret && set->sysclk)
> +	if (set->sysclk) {
>  		ret = snd_soc_dai_set_sysclk(dai, 0, set->sysclk, 0);
> +		if (ret && ret != -ENOTSUPP) {
> +			dev_err(dai->dev, "simple-card: set_sysclk error\n");
> +			return ret;
> +		}
> +	}
>  
>  	return ret;

Sorry: you must return 0 here

>  }

-- 
Ken ar c'hentañ	|	      ** Breizh ha Linux atav! **
Jef		|		http://moinejf.free.fr/

  reply	other threads:[~2014-01-23  7:11 UTC|newest]

Thread overview: 42+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-01-23  5:02 [PATCH 0/8] New and Resend the old patches Xiubo Li
2014-01-23  5:02 ` Xiubo Li
2014-01-23  5:02 ` [PATCH 1/8] ASoC: fsl: Add VF610 soc audio card Kconfig Xiubo Li
2014-01-23  5:02   ` Xiubo Li
2014-01-23 18:38   ` Mark Brown
2014-01-26  5:15     ` Li.Xiubo
2014-01-26 12:43       ` Mark Brown
2014-02-10  4:12         ` Li.Xiubo
2014-02-10 12:31           ` Mark Brown
2014-02-10 12:31             ` Mark Brown
2014-01-23  5:02 ` [PATCH Resend 2/8] ASoC: simple-card: fix __asoc_simple_card_dai_init Xiubo Li
2014-01-23  5:02   ` Xiubo Li
2014-01-23  7:11   ` Jean-Francois Moine [this message]
2014-01-23  7:11     ` Jean-Francois Moine
2014-01-23  7:22     ` Li.Xiubo
2014-01-23  7:22       ` Li.Xiubo
2014-01-23  5:02 ` [PATCH Resend 3/8] ASoC: simple-card: simplify the daifmt code Xiubo Li
2014-01-23  5:02   ` Xiubo Li
2014-01-23 19:20   ` Mark Brown
2014-01-24  7:26     ` Li.Xiubo
2014-01-24  7:26       ` Li.Xiubo
2014-01-23  5:02 ` [PATCH Resend 4/8] ASoC: simple-card: Add snd_card's name parsing from DT node support Xiubo Li
2014-01-23  5:02   ` Xiubo Li
2014-01-23 19:24   ` Mark Brown
2014-01-23  5:02 ` [PATCH 5/8] ASoC: core: set_tdm_slot() will return -ENOTSUPP if no operation provided Xiubo Li
2014-01-23  5:02   ` Xiubo Li
2014-01-23 19:29   ` Mark Brown
2014-01-23 19:29     ` Mark Brown
2014-01-23  5:02 ` [PATCH 6/8] ASoC: simple-card: add tdm slot supports Xiubo Li
2014-01-23  5:02   ` Xiubo Li
2014-01-23  6:11   ` David Rientjes
2014-01-23  6:35     ` Li.Xiubo
2014-01-23 19:48   ` Mark Brown
2014-01-23  5:02 ` [PATCH Resend 7/8] ASoC: add snd_soc_of_parse_audio_simple_widgets for DeviceTree Xiubo Li
2014-01-23  5:02   ` Xiubo Li
2014-01-23 19:39   ` Mark Brown
2014-01-24  2:46     ` Li.Xiubo
2014-01-24  2:46       ` Li.Xiubo
2014-01-24 13:05       ` Mark Brown
2014-01-23  5:02 ` [PATCH 8/8] ASoC: simple-card: add off-codec widgets supports Xiubo Li
2014-01-23  5:02   ` Xiubo Li
2014-01-23 19:40   ` Mark Brown

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20140123081151.35837d3b@armhf \
    --to=moinejf@free.fr \
    --cc=Li.Xiubo@freescale.com \
    --cc=alsa-devel@alsa-project.org \
    --cc=broonie@kernel.org \
    --cc=kuninori.morimoto.gx@renesas.com \
    --cc=lgirdwood@gmail.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=shawn.guo@linaro.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.