All of lore.kernel.org
 help / color / mirror / Atom feed
From: Jarkko Nikula <jarkko.nikula@bitmer.com>
To: Julia Lawall <Julia.Lawall@lip6.fr>
Cc: Peter Ujfalusi <peter.ujfalusi@ti.com>,
	kernel-janitors@vger.kernel.org, Liam Girdwood <lrg@ti.com>,
	Mark Brown <broonie@opensource.wolfsonmicro.com>,
	Jaroslav Kysela <perex@perex.cz>, Takashi Iwai <tiwai@suse.de>,
	linux-omap@vger.kernel.org, alsa-devel@alsa-project.org,
	linux-kernel@vger.kernel.org
Subject: Re: [PATCH 4/9] sound/soc/omap/am3517evm.c: fix error return code
Date: Mon, 20 Aug 2012 09:09:35 +0300	[thread overview]
Message-ID: <5031D49F.7050301@bitmer.com> (raw)
In-Reply-To: <1345359780-18647-10-git-send-email-Julia.Lawall@lip6.fr>

On 08/19/2012 10:03 AM, Julia Lawall wrote:
> From: Julia Lawall <Julia.Lawall@lip6.fr>
> 
> It was forgotten to initialize ret to the result of calling
> snd_soc_dai_set_sysclk, unlike at the other calls in the same function.
> 
> A simplified version of the semantic match that finds this problem is as
> follows: (http://coccinelle.lip6.fr/)
> 
> // <smpl>
> (
> if@p1 (\(ret < 0\|ret != 0\))
>  { ... return ret; }
> |
> ret@p1 = 0
> )
> ... when != ret = e1
>     when != &ret
> *if(...)
> {
>   ... when != ret = e2
>       when forall
>  return ret;
> }
> 
> // </smpl>
> 
> Signed-off-by: Julia Lawall <Julia.Lawall@lip6.fr>
> 
> ---
>  sound/soc/omap/am3517evm.c |    2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/sound/soc/omap/am3517evm.c b/sound/soc/omap/am3517evm.c
> index 009533a..df65f98 100644
> --- a/sound/soc/omap/am3517evm.c
> +++ b/sound/soc/omap/am3517evm.c
> @@ -59,7 +59,7 @@ static int am3517evm_hw_params(struct snd_pcm_substream *substream,
>  		return ret;
>  	}
>  
> -	snd_soc_dai_set_sysclk(cpu_dai, OMAP_MCBSP_FSR_SRC_FSX, 0,
> +	ret = snd_soc_dai_set_sysclk(cpu_dai, OMAP_MCBSP_FSR_SRC_FSX, 0,
>  				SND_SOC_CLOCK_IN);
>  	if (ret < 0) {
>  		printk(KERN_ERR "can't set CPU system clock OMAP_MCBSP_FSR_SRC_FSX\n");
> 

Acked-by: Jarkko Nikula <jarkko.nikula@bitmer.com>

WARNING: multiple messages have this Message-ID (diff)
From: Jarkko Nikula <jarkko.nikula@bitmer.com>
To: Julia Lawall <Julia.Lawall@lip6.fr>
Cc: Peter Ujfalusi <peter.ujfalusi@ti.com>,
	kernel-janitors@vger.kernel.org, Liam Girdwood <lrg@ti.com>,
	Mark Brown <broonie@opensource.wolfsonmicro.com>,
	Jaroslav Kysela <perex@perex.cz>, Takashi Iwai <tiwai@suse.de>,
	linux-omap@vger.kernel.org, alsa-devel@alsa-project.org,
	linux-kernel@vger.kernel.org
Subject: Re: [PATCH 4/9] sound/soc/omap/am3517evm.c: fix error return code
Date: Mon, 20 Aug 2012 06:09:35 +0000	[thread overview]
Message-ID: <5031D49F.7050301@bitmer.com> (raw)
In-Reply-To: <1345359780-18647-10-git-send-email-Julia.Lawall@lip6.fr>

On 08/19/2012 10:03 AM, Julia Lawall wrote:
> From: Julia Lawall <Julia.Lawall@lip6.fr>
> 
> It was forgotten to initialize ret to the result of calling
> snd_soc_dai_set_sysclk, unlike at the other calls in the same function.
> 
> A simplified version of the semantic match that finds this problem is as
> follows: (http://coccinelle.lip6.fr/)
> 
> // <smpl>
> (
> if@p1 (\(ret < 0\|ret != 0\))
>  { ... return ret; }
> |
> ret@p1 = 0
> )
> ... when != ret = e1
>     when != &ret
> *if(...)
> {
>   ... when != ret = e2
>       when forall
>  return ret;
> }
> 
> // </smpl>
> 
> Signed-off-by: Julia Lawall <Julia.Lawall@lip6.fr>
> 
> ---
>  sound/soc/omap/am3517evm.c |    2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/sound/soc/omap/am3517evm.c b/sound/soc/omap/am3517evm.c
> index 009533a..df65f98 100644
> --- a/sound/soc/omap/am3517evm.c
> +++ b/sound/soc/omap/am3517evm.c
> @@ -59,7 +59,7 @@ static int am3517evm_hw_params(struct snd_pcm_substream *substream,
>  		return ret;
>  	}
>  
> -	snd_soc_dai_set_sysclk(cpu_dai, OMAP_MCBSP_FSR_SRC_FSX, 0,
> +	ret = snd_soc_dai_set_sysclk(cpu_dai, OMAP_MCBSP_FSR_SRC_FSX, 0,
>  				SND_SOC_CLOCK_IN);
>  	if (ret < 0) {
>  		printk(KERN_ERR "can't set CPU system clock OMAP_MCBSP_FSR_SRC_FSX\n");
> 

Acked-by: Jarkko Nikula <jarkko.nikula@bitmer.com>

  reply	other threads:[~2012-08-20  6:09 UTC|newest]

Thread overview: 117+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2012-08-19  7:02 [PATCH 0/10] fix error return code Julia Lawall
2012-08-19  7:02 ` Julia Lawall
2012-08-19  7:02 ` Julia Lawall
2012-08-19  7:02 ` [PATCH 2/10] sound/soc/fsl/imx-sgtl5000.c: " Julia Lawall
2012-08-19  7:02   ` Julia Lawall
2012-08-19  7:02   ` Julia Lawall
2012-08-20 19:44   ` Mark Brown
2012-08-20 19:44     ` Mark Brown
2012-08-20 19:44     ` Mark Brown
2012-08-19  7:02 ` [PATCH 1/10] sound/soc/ux500/ux500_msp_i2s.c: better use devm functions and " Julia Lawall
2012-08-19  7:02   ` Julia Lawall
2012-08-19  7:02   ` Julia Lawall
2012-08-19  7:02 ` [PATCH 8/9] sound/pci/rme9652/hdspm.c: " Julia Lawall
2012-08-19  7:02   ` Julia Lawall
2012-08-19  7:02   ` Julia Lawall
2012-08-19  7:02 ` [PATCH 7/9] sound/pci/sis7019.c: " Julia Lawall
2012-08-19  7:02   ` Julia Lawall
2012-08-19  7:02   ` Julia Lawall
2012-08-19 23:04   ` David Dillow
2012-08-19 23:04     ` David Dillow
2012-08-19  7:02 ` [PATCH 6/9] sound/pci/ctxfi/ctatc.c: " Julia Lawall
2012-08-19  7:02   ` Julia Lawall
2012-08-19  7:02   ` Julia Lawall
2012-08-19  7:02 ` [PATCH 5/9] sound/atmel/ac97c.c: " Julia Lawall
2012-08-19  7:02   ` Julia Lawall
2012-08-19  7:02   ` Julia Lawall
2012-08-19  7:02 ` [PATCH 3/10] sound/atmel/abdac.c: " Julia Lawall
2012-08-19  7:02   ` Julia Lawall
2012-08-19  7:02   ` Julia Lawall
2012-08-19  7:02 ` [PATCH 9/9] sound/ppc/snd_ps3.c: " Julia Lawall
2012-08-19  7:02   ` Julia Lawall
2012-08-19  7:02   ` Julia Lawall
2012-08-19  7:03 ` [PATCH 4/9] sound/soc/omap/am3517evm.c: " Julia Lawall
2012-08-19  7:03   ` Julia Lawall
2012-08-20  6:09   ` Jarkko Nikula [this message]
2012-08-20  6:09     ` Jarkko Nikula
2012-08-20  9:04 ` [PATCH 0/10] " Takashi Iwai
2012-08-20  9:04   ` [alsa-devel] " Takashi Iwai
2012-08-20  9:04   ` Takashi Iwai
2012-08-20  9:15   ` Julia Lawall
2012-08-20  9:15     ` [alsa-devel] " Julia Lawall
2012-08-20  9:15     ` Julia Lawall
  -- strict thread matches above, loose matches on Subject: below --
2014-11-23 12:48 Julia Lawall
2014-11-23 12:48 ` Julia Lawall
2014-11-23 12:48 ` [PATCH 2/10] sound/soc/fsl/imx-sgtl5000.c: " Julia Lawall
2014-11-23 12:48   ` Julia Lawall
2014-11-23 12:48 ` [PATCH 1/10] sound/soc/ux500/ux500_msp_i2s.c: better use devm functions and " Julia Lawall
2014-11-23 12:48   ` Julia Lawall
2014-11-23 12:48 ` [PATCH 8/9] sound/pci/rme9652/hdspm.c: " Julia Lawall
2014-11-23 12:48   ` Julia Lawall
2014-11-23 12:48 ` [PATCH 7/9] sound/pci/sis7019.c: " Julia Lawall
2014-11-23 12:48   ` Julia Lawall
2014-11-23 12:48 ` [PATCH 6/9] sound/pci/ctxfi/ctatc.c: " Julia Lawall
2014-11-23 12:48   ` Julia Lawall
2014-11-23 17:15   ` Sudip Mukherjee
2014-11-23 17:27     ` Sudip Mukherjee
2014-11-23 17:15     ` Sudip Mukherjee
2014-11-23 19:11     ` Julia Lawall
2014-11-23 19:11       ` Julia Lawall
2014-11-23 12:48 ` [PATCH 5/9] sound/atmel/ac97c.c: " Julia Lawall
2014-11-23 12:48   ` Julia Lawall
2014-11-23 12:48 ` [PATCH 3/10] sound/atmel/abdac.c: " Julia Lawall
2014-11-23 12:48   ` Julia Lawall
2014-11-23 12:48 ` [PATCH 9/9] sound/ppc/snd_ps3.c: " Julia Lawall
2014-11-23 12:48   ` Julia Lawall
2014-11-23 12:48   ` Julia Lawall
2014-11-23 13:18   ` Julia Lawall
2014-11-23 12:48 ` [PATCH 4/9] sound/soc/omap/am3517evm.c: " Julia Lawall
2014-11-23 12:48   ` Julia Lawall
2014-11-23 13:15 ` [PATCH 0/10] " Julia Lawall
2014-11-23 13:15   ` Julia Lawall
2015-04-05 11:38 Julia Lawall
2015-04-05 11:38 ` Julia Lawall
2015-04-05 11:38 ` [PATCH 2/10] sound/soc/fsl/imx-sgtl5000.c: " Julia Lawall
2015-04-05 11:38   ` Julia Lawall
2015-04-05 12:13   ` Julia Lawall
2015-04-05 12:13     ` Julia Lawall
2015-04-05 11:38 ` [PATCH 1/10] sound/soc/ux500/ux500_msp_i2s.c: better use devm functions and " Julia Lawall
2015-04-05 11:38   ` Julia Lawall
2015-04-05 12:12   ` Julia Lawall
2015-04-05 12:12     ` [PATCH 1/10] sound/soc/ux500/ux500_msp_i2s.c: better use devm functions and fix error return cod Julia Lawall
2015-04-05 11:38 ` [PATCH 8/9] sound/pci/rme9652/hdspm.c: fix error return code Julia Lawall
2015-04-05 11:38   ` Julia Lawall
2015-04-05 12:13   ` Julia Lawall
2015-04-05 12:13     ` Julia Lawall
2015-04-05 11:38 ` [PATCH 7/9] sound/pci/sis7019.c: " Julia Lawall
2015-04-05 11:38   ` Julia Lawall
2015-04-05 12:13   ` Julia Lawall
2015-04-05 12:13     ` Julia Lawall
2015-04-05 11:38 ` [PATCH 6/9] sound/pci/ctxfi/ctatc.c: " Julia Lawall
2015-04-05 11:38   ` Julia Lawall
2015-04-05 12:13   ` Julia Lawall
2015-04-05 12:13     ` Julia Lawall
2015-04-05 11:38 ` [PATCH 5/9] sound/atmel/ac97c.c: " Julia Lawall
2015-04-05 11:38   ` Julia Lawall
2015-04-05 12:13   ` Julia Lawall
2015-04-05 12:13     ` Julia Lawall
2015-04-05 11:38 ` [PATCH 3/10] sound/atmel/abdac.c: " Julia Lawall
2015-04-05 11:38   ` Julia Lawall
2015-04-05 12:12   ` Julia Lawall
2015-04-05 12:12     ` Julia Lawall
2015-04-05 11:38 ` [PATCH 9/9] sound/ppc/snd_ps3.c: " Julia Lawall
2015-04-05 11:38   ` Julia Lawall
2015-04-05 11:38   ` Julia Lawall
2015-04-05 11:38   ` Julia Lawall
2015-04-05 11:52   ` Geert Uytterhoeven
2015-04-05 11:52     ` Geert Uytterhoeven
2015-04-05 11:52     ` Geert Uytterhoeven
2015-04-05 12:12   ` Julia Lawall
2015-04-05 12:12     ` Julia Lawall
2015-04-05 12:12     ` Julia Lawall
2015-04-05 11:38 ` [PATCH 4/9] sound/soc/omap/am3517evm.c: " Julia Lawall
2015-04-05 11:38   ` Julia Lawall
2015-04-05 12:13   ` Julia Lawall
2015-04-05 12:13     ` Julia Lawall
2015-04-05 12:12 ` [PATCH 0/10] " Julia Lawall
2015-04-05 12:12   ` Julia Lawall

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=5031D49F.7050301@bitmer.com \
    --to=jarkko.nikula@bitmer.com \
    --cc=Julia.Lawall@lip6.fr \
    --cc=alsa-devel@alsa-project.org \
    --cc=broonie@opensource.wolfsonmicro.com \
    --cc=kernel-janitors@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-omap@vger.kernel.org \
    --cc=lrg@ti.com \
    --cc=perex@perex.cz \
    --cc=peter.ujfalusi@ti.com \
    --cc=tiwai@suse.de \
    /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.