From: Tony Lindgren <tony@atomide.com>
To: linux-arm-kernel@lists.infradead.org
Subject: Re: [PATCH 1/2] arch/arm/mach-omap2/dma.c: Convert IS_ERR result
Date: Fri, 28 Jan 2011 00:26:21 +0000 [thread overview]
Message-ID: <20110128002620.GR23412@atomide.com> (raw)
In-Reply-To: <20110127210225.07de155f.jhnikula@gmail.com>
* Jarkko Nikula <jhnikula@gmail.com> [110127 11:03]:
> On Thu, 27 Jan 2011 16:49:06 +0100
> Julia Lawall <julia@diku.dk> wrote:
>
> > diff -u -p a/arch/arm/mach-omap2/dma.c b/arch/arm/mach-omap2/dma.c
> > --- a/arch/arm/mach-omap2/dma.c
> > +++ b/arch/arm/mach-omap2/dma.c
> > @@ -264,7 +264,7 @@ static int __init omap2_system_dma_init_
> > if (IS_ERR(od)) {
> > pr_err("%s: Cant build omap_device for %s:%s.\n",
> > __func__, name, oh->name);
> > - return IS_ERR(od);
> > + return PTR_ERR(od);
> > }
> >
> FWIW,
>
> Acked-by: Jarkko Nikula <jhnikula@gmail.com>
Thanks, will queue as a fix during the -rc cycle.
Tony
WARNING: multiple messages have this Message-ID (diff)
From: Tony Lindgren <tony@atomide.com>
To: Jarkko Nikula <jhnikula@gmail.com>
Cc: Julia Lawall <julia@diku.dk>,
Russell King <linux@arm.linux.org.uk>,
linux-omap@vger.kernel.org, kernel-janitors@vger.kernel.org,
linux-kernel@vger.kernel.org,
linux-arm-kernel@lists.infradead.org
Subject: Re: [PATCH 1/2] arch/arm/mach-omap2/dma.c: Convert IS_ERR result to PTR_ERR
Date: Thu, 27 Jan 2011 16:26:21 -0800 [thread overview]
Message-ID: <20110128002620.GR23412@atomide.com> (raw)
In-Reply-To: <20110127210225.07de155f.jhnikula@gmail.com>
* Jarkko Nikula <jhnikula@gmail.com> [110127 11:03]:
> On Thu, 27 Jan 2011 16:49:06 +0100
> Julia Lawall <julia@diku.dk> wrote:
>
> > diff -u -p a/arch/arm/mach-omap2/dma.c b/arch/arm/mach-omap2/dma.c
> > --- a/arch/arm/mach-omap2/dma.c
> > +++ b/arch/arm/mach-omap2/dma.c
> > @@ -264,7 +264,7 @@ static int __init omap2_system_dma_init_
> > if (IS_ERR(od)) {
> > pr_err("%s: Cant build omap_device for %s:%s.\n",
> > __func__, name, oh->name);
> > - return IS_ERR(od);
> > + return PTR_ERR(od);
> > }
> >
> FWIW,
>
> Acked-by: Jarkko Nikula <jhnikula@gmail.com>
Thanks, will queue as a fix during the -rc cycle.
Tony
WARNING: multiple messages have this Message-ID (diff)
From: tony@atomide.com (Tony Lindgren)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH 1/2] arch/arm/mach-omap2/dma.c: Convert IS_ERR result to PTR_ERR
Date: Thu, 27 Jan 2011 16:26:21 -0800 [thread overview]
Message-ID: <20110128002620.GR23412@atomide.com> (raw)
In-Reply-To: <20110127210225.07de155f.jhnikula@gmail.com>
* Jarkko Nikula <jhnikula@gmail.com> [110127 11:03]:
> On Thu, 27 Jan 2011 16:49:06 +0100
> Julia Lawall <julia@diku.dk> wrote:
>
> > diff -u -p a/arch/arm/mach-omap2/dma.c b/arch/arm/mach-omap2/dma.c
> > --- a/arch/arm/mach-omap2/dma.c
> > +++ b/arch/arm/mach-omap2/dma.c
> > @@ -264,7 +264,7 @@ static int __init omap2_system_dma_init_
> > if (IS_ERR(od)) {
> > pr_err("%s: Cant build omap_device for %s:%s.\n",
> > __func__, name, oh->name);
> > - return IS_ERR(od);
> > + return PTR_ERR(od);
> > }
> >
> FWIW,
>
> Acked-by: Jarkko Nikula <jhnikula@gmail.com>
Thanks, will queue as a fix during the -rc cycle.
Tony
next prev parent reply other threads:[~2011-01-28 0:26 UTC|newest]
Thread overview: 9+ messages / expand[flat|nested] mbox.gz Atom feed top
2011-01-27 15:49 [PATCH 1/2] arch/arm/mach-omap2/dma.c: Convert IS_ERR result to PTR_ERR Julia Lawall
2011-01-27 15:49 ` Julia Lawall
2011-01-27 15:49 ` Julia Lawall
2011-01-27 19:02 ` [PATCH 1/2] arch/arm/mach-omap2/dma.c: Convert IS_ERR result to Jarkko Nikula
2011-01-27 19:02 ` [PATCH 1/2] arch/arm/mach-omap2/dma.c: Convert IS_ERR result to PTR_ERR Jarkko Nikula
2011-01-27 19:02 ` Jarkko Nikula
2011-01-28 0:26 ` Tony Lindgren [this message]
2011-01-28 0:26 ` Tony Lindgren
2011-01-28 0:26 ` Tony Lindgren
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=20110128002620.GR23412@atomide.com \
--to=tony@atomide.com \
--cc=linux-arm-kernel@lists.infradead.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.