Re: [U-Boot] [PATCH v3 1/6] arm: adapt asm/linkage.h from Linux

2012-02-24 Thread Aneesh V
On Friday 24 February 2012 05:22 AM, Mike Frysinger wrote: On Thursday 23 February 2012 12:40:54 Aneesh V wrote: On Thursday 23 February 2012 08:29 PM, Mike Frysinger wrote: On Thursday 23 February 2012 09:06:01 Aneesh V wrote: --- /dev/null +++ b/arch/arm/include/asm/linkage.h @@ -0,0 +1,11 @

Re: [U-Boot] [PATCH v3 1/6] arm: adapt asm/linkage.h from Linux

2012-02-23 Thread Mike Frysinger
On Thursday 23 February 2012 12:40:54 Aneesh V wrote: > On Thursday 23 February 2012 08:29 PM, Mike Frysinger wrote: > > On Thursday 23 February 2012 09:06:01 Aneesh V wrote: > >> --- /dev/null > >> +++ b/arch/arm/include/asm/linkage.h > >> @@ -0,0 +1,11 @@ > >> +#ifndef __ASM_LINKAGE_H > >> +#defi

Re: [U-Boot] [PATCH v3 1/6] arm: adapt asm/linkage.h from Linux

2012-02-23 Thread Aneesh V
On Thursday 23 February 2012 08:29 PM, Mike Frysinger wrote: On Thursday 23 February 2012 09:06:01 Aneesh V wrote: --- /dev/null +++ b/arch/arm/include/asm/linkage.h @@ -0,0 +1,11 @@ +#ifndef __ASM_LINKAGE_H +#define __ASM_LINKAGE_H needs copyright/license comment header As Tom mentioned, I

Re: [U-Boot] [PATCH v3 1/6] arm: adapt asm/linkage.h from Linux

2012-02-23 Thread Mike Frysinger
On Thursday 23 February 2012 10:24:36 Tom Rini wrote: > On Thu, Feb 23, 2012 at 09:59:00AM -0500, Mike Frysinger wrote: > > On Thursday 23 February 2012 09:06:01 Aneesh V wrote: > > > --- /dev/null > > > +++ b/arch/arm/include/asm/linkage.h > > > @@ -0,0 +1,11 @@ > > > +#ifndef __ASM_LINKAGE_H > >

Re: [U-Boot] [PATCH v3 1/6] arm: adapt asm/linkage.h from Linux

2012-02-23 Thread Tom Rini
On Thu, Feb 23, 2012 at 09:59:00AM -0500, Mike Frysinger wrote: > On Thursday 23 February 2012 09:06:01 Aneesh V wrote: > > --- /dev/null > > +++ b/arch/arm/include/asm/linkage.h > > @@ -0,0 +1,11 @@ > > +#ifndef __ASM_LINKAGE_H > > +#define __ASM_LINKAGE_H > > needs copyright/license comment head

Re: [U-Boot] [PATCH v3 1/6] arm: adapt asm/linkage.h from Linux

2012-02-23 Thread Mike Frysinger
On Thursday 23 February 2012 09:06:01 Aneesh V wrote: > --- /dev/null > +++ b/arch/arm/include/asm/linkage.h > @@ -0,0 +1,11 @@ > +#ifndef __ASM_LINKAGE_H > +#define __ASM_LINKAGE_H needs copyright/license comment header > +#define ENDPROC(name) \ > +.type name, %function; \ > +END(name) please

[U-Boot] [PATCH v3 1/6] arm: adapt asm/linkage.h from Linux

2012-02-23 Thread Aneesh V
This will add ARM specific over-rides for the defines from linux/linkage.h Signed-off-by: Aneesh V --- Not adding the defines for __ALIGN and __ALIGN_STR because it's not clear why alignment is set to 0 (single byte alignment). Creates a checkpatch error that can not be avoided Changes in V2: