All of lore.kernel.org
 help / color / mirror / Atom feed
From: Tony Lindgren <tony@atomide.com>
To: Paul Walmsley <paul@pwsan.com>
Cc: Peter Ujfalusi <peter.ujfalusi@ti.com>,
	Stephen Rothwell <sfr@canb.auug.org.au>,
	linux-omap@vger.kernel.org, linux-arm-kernel@lists.infradead.org,
	linux-next@vger.kernel.org
Subject: Re: [PATCH linux-next] ARM: OMAP2: Fix compillation error in cm_common
Date: Mon, 12 Nov 2012 09:38:47 -0800	[thread overview]
Message-ID: <20121112173847.GJ6801@atomide.com> (raw)
In-Reply-To: <alpine.DEB.2.00.1211121625150.6043@utopia.booyaka.com>

* Paul Walmsley <paul@pwsan.com> [121112 08:27]:
> Hi
> 
> On Mon, 12 Nov 2012, Peter Ujfalusi wrote:
> 
> > Fixes the following error:
> >   CC      arch/arm/mach-omap2/cm_common.o
> > arch/arm/mach-omap2/cm_common.c: In function ‘cm_register’:
> > arch/arm/mach-omap2/cm_common.c:42:11: error: ‘EINVAL’ undeclared (first use in this function)
> > arch/arm/mach-omap2/cm_common.c:42:11: note: each undeclared identifier is reported only once for each function it appears in
> > arch/arm/mach-omap2/cm_common.c:45:11: error: ‘EEXIST’ undeclared (first use in this function)
> > arch/arm/mach-omap2/cm_common.c: In function ‘cm_unregister’:
> > arch/arm/mach-omap2/cm_common.c:66:11: error: ‘EINVAL’ undeclared (first use in this function)
> > make[1]: *** [arch/arm/mach-omap2/cm_common.o] Error 1
> > make: *** [arch/arm/mach-omap2] Error 2
> > 
> > Signed-off-by: Peter Ujfalusi <peter.ujfalusi@ti.com>
> > ---
> > 
> > Hi,
> > 
> > with today's linux-next the kernel build failed with the abive error for OMAP.
> > 
> > Regards,
> > Peter
> > 
> >  arch/arm/mach-omap2/cm_common.c | 1 +
> >  1 file changed, 1 insertion(+)
> > 
> > diff --git a/arch/arm/mach-omap2/cm_common.c b/arch/arm/mach-omap2/cm_common.c
> > index 3246cef..3fafc27 100644
> > --- a/arch/arm/mach-omap2/cm_common.c
> > +++ b/arch/arm/mach-omap2/cm_common.c
> > @@ -13,6 +13,7 @@
> >  
> >  #include <linux/kernel.h>
> >  #include <linux/init.h>
> > +#include <linux/errno.h>
> >  
> >  #include "cm2xxx.h"
> >  #include "cm3xxx.h"
> > -- 
> > 1.8.0
> 
> Acked-by: Paul Walmsley <paul@pwsan.com>
> 
> Thanks Peter.
> 
> Tony, how would you like to handle this one?

I can queue it.

Regards,

Tony

WARNING: multiple messages have this Message-ID (diff)
From: tony@atomide.com (Tony Lindgren)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH linux-next] ARM: OMAP2: Fix compillation error in cm_common
Date: Mon, 12 Nov 2012 09:38:47 -0800	[thread overview]
Message-ID: <20121112173847.GJ6801@atomide.com> (raw)
In-Reply-To: <alpine.DEB.2.00.1211121625150.6043@utopia.booyaka.com>

* Paul Walmsley <paul@pwsan.com> [121112 08:27]:
> Hi
> 
> On Mon, 12 Nov 2012, Peter Ujfalusi wrote:
> 
> > Fixes the following error:
> >   CC      arch/arm/mach-omap2/cm_common.o
> > arch/arm/mach-omap2/cm_common.c: In function ?cm_register?:
> > arch/arm/mach-omap2/cm_common.c:42:11: error: ?EINVAL? undeclared (first use in this function)
> > arch/arm/mach-omap2/cm_common.c:42:11: note: each undeclared identifier is reported only once for each function it appears in
> > arch/arm/mach-omap2/cm_common.c:45:11: error: ?EEXIST? undeclared (first use in this function)
> > arch/arm/mach-omap2/cm_common.c: In function ?cm_unregister?:
> > arch/arm/mach-omap2/cm_common.c:66:11: error: ?EINVAL? undeclared (first use in this function)
> > make[1]: *** [arch/arm/mach-omap2/cm_common.o] Error 1
> > make: *** [arch/arm/mach-omap2] Error 2
> > 
> > Signed-off-by: Peter Ujfalusi <peter.ujfalusi@ti.com>
> > ---
> > 
> > Hi,
> > 
> > with today's linux-next the kernel build failed with the abive error for OMAP.
> > 
> > Regards,
> > Peter
> > 
> >  arch/arm/mach-omap2/cm_common.c | 1 +
> >  1 file changed, 1 insertion(+)
> > 
> > diff --git a/arch/arm/mach-omap2/cm_common.c b/arch/arm/mach-omap2/cm_common.c
> > index 3246cef..3fafc27 100644
> > --- a/arch/arm/mach-omap2/cm_common.c
> > +++ b/arch/arm/mach-omap2/cm_common.c
> > @@ -13,6 +13,7 @@
> >  
> >  #include <linux/kernel.h>
> >  #include <linux/init.h>
> > +#include <linux/errno.h>
> >  
> >  #include "cm2xxx.h"
> >  #include "cm3xxx.h"
> > -- 
> > 1.8.0
> 
> Acked-by: Paul Walmsley <paul@pwsan.com>
> 
> Thanks Peter.
> 
> Tony, how would you like to handle this one?

I can queue it.

Regards,

Tony

  reply	other threads:[~2012-11-12 17:38 UTC|newest]

Thread overview: 6+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2012-11-12 15:17 [PATCH linux-next] ARM: OMAP2: Fix compillation error in cm_common Peter Ujfalusi
2012-11-12 15:17 ` Peter Ujfalusi
2012-11-12 16:26 ` Paul Walmsley
2012-11-12 16:26   ` Paul Walmsley
2012-11-12 17:38   ` Tony Lindgren [this message]
2012-11-12 17:38     ` 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=20121112173847.GJ6801@atomide.com \
    --to=tony@atomide.com \
    --cc=linux-arm-kernel@lists.infradead.org \
    --cc=linux-next@vger.kernel.org \
    --cc=linux-omap@vger.kernel.org \
    --cc=paul@pwsan.com \
    --cc=peter.ujfalusi@ti.com \
    --cc=sfr@canb.auug.org.au \
    /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.