From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754317Ab1A1A03 (ORCPT ); Thu, 27 Jan 2011 19:26:29 -0500 Received: from mho-02-ewr.mailhop.org ([204.13.248.72]:63197 "EHLO mho-02-ewr.mailhop.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753522Ab1A1A01 (ORCPT ); Thu, 27 Jan 2011 19:26:27 -0500 X-Mail-Handler: MailHop Outbound by DynDNS X-Originating-IP: 24.130.172.179 X-Report-Abuse-To: abuse@dyndns.com (see http://www.dyndns.com/services/mailhop/outbound_abuse.html for abuse reporting information) X-MHO-User: U2FsdGVkX1+OTSA0LBoQxcxwiBUDEZ8j Date: Thu, 27 Jan 2011 16:26:21 -0800 From: Tony Lindgren To: Jarkko Nikula Cc: Julia Lawall , Russell King , 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 Message-ID: <20110128002620.GR23412@atomide.com> References: <1296143347-17508-1-git-send-email-julia@diku.dk> <20110127210225.07de155f.jhnikula@gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20110127210225.07de155f.jhnikula@gmail.com> User-Agent: Mutt/1.5.20 (2009-06-14) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org * Jarkko Nikula [110127 11:03]: > On Thu, 27 Jan 2011 16:49:06 +0100 > Julia Lawall 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 Thanks, will queue as a fix during the -rc cycle. Tony