All of lore.kernel.org
 help / color / mirror / Atom feed
From: Shawn Guo <shawn.guo@freescale.com>
To: Duan Jiong <duanj.fnst@cn.fujitsu.com>
Cc: <kernel@pengutronix.de>, <linux@arm.linux.org.uk>,
	<linux-kernel@vger.kernel.org>
Subject: Re: [PATCH] serial: imx: replace IS_ERR and PTR_ERR with PTR_ERR_OR_ZERO
Date: Sun, 13 Apr 2014 16:00:09 +0800	[thread overview]
Message-ID: <20140413080007.GE24180@dragon> (raw)
In-Reply-To: <1397205522-24551-1-git-send-email-duanj.fnst@cn.fujitsu.com>

On Fri, Apr 11, 2014 at 04:38:42PM +0800, Duan Jiong wrote:
> This patch fixes coccinelle error regarding usage of IS_ERR and
> PTR_ERR instead of PTR_ERR_OR_ZERO.
> 
> Signed-off-by: Duan Jiong <duanj.fnst@cn.fujitsu.com>
> ---
>  arch/arm/mach-imx/mach-mx31moboard.c | 5 +----

You are patching a board file under arch/arm/mach-imx, but have the
patch prefixed with "serial:".  This is quite confusing.

You may want to just merge the change into the one you sent to change
mx31moboard-smartbot.c.

Shawn

>  1 file changed, 1 insertion(+), 4 deletions(-)
> 
> diff --git a/arch/arm/mach-imx/mach-mx31moboard.c b/arch/arm/mach-imx/mach-mx31moboard.c
> index 8f45afe..c05d711 100644
> --- a/arch/arm/mach-imx/mach-mx31moboard.c
> +++ b/arch/arm/mach-imx/mach-mx31moboard.c
> @@ -434,10 +434,7 @@ static int __init moboard_usbh2_init(void)
>  		return -ENODEV;
>  
>  	pdev = imx31_add_mxc_ehci_hs(2, &usbh2_pdata);
> -	if (IS_ERR(pdev))
> -		return PTR_ERR(pdev);
> -
> -	return 0;
> +	return PTR_ERR_OR_ZERO(pdev);
>  }
>  
>  static const struct gpio_led mx31moboard_leds[] __initconst = {
> -- 
> 1.8.3.1
> 
> 
> 


      reply	other threads:[~2014-04-13  8:00 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-04-11  8:38 [PATCH] serial: imx: replace IS_ERR and PTR_ERR with PTR_ERR_OR_ZERO Duan Jiong
2014-04-13  8:00 ` Shawn Guo [this message]

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=20140413080007.GE24180@dragon \
    --to=shawn.guo@freescale.com \
    --cc=duanj.fnst@cn.fujitsu.com \
    --cc=kernel@pengutronix.de \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux@arm.linux.org.uk \
    /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.