linux-arm-kernel.lists.infradead.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] ARM: Kirkwood: Fix 'SZ_1M' undeclared here for db88f6281-bp-setup.c
@ 2012-08-30  5:39 Andrew Lunn
  2012-08-30 17:12 ` Jason Cooper
  0 siblings, 1 reply; 7+ messages in thread
From: Andrew Lunn @ 2012-08-30  5:39 UTC (permalink / raw)
  To: linux-arm-kernel

Linux-next has failed to compile for kirkwood since 23 August with:

arch/arm/mach-kirkwood/db88f6281-bp-setup.c:29: error: 'SZ_1M' undeclared here (not in a function)
arch/arm/mach-kirkwood/db88f6281-bp-setup.c:33: error: 'SZ_4M' undeclared here (not in a function)

Add missing <linux/sizes.h>

Signed-off-by: Andrew Lunn <andrew@lunn.ch>
---
 arch/arm/mach-kirkwood/db88f6281-bp-setup.c |    1 +
 1 file changed, 1 insertion(+)

diff --git a/arch/arm/mach-kirkwood/db88f6281-bp-setup.c b/arch/arm/mach-kirkwood/db88f6281-bp-setup.c
index d933593..be90b7d 100644
--- a/arch/arm/mach-kirkwood/db88f6281-bp-setup.c
+++ b/arch/arm/mach-kirkwood/db88f6281-bp-setup.c
@@ -10,6 +10,7 @@
 
 #include <linux/kernel.h>
 #include <linux/init.h>
+#include <linux/sizes.h>
 #include <linux/platform_device.h>
 #include <linux/mtd/partitions.h>
 #include <linux/ata_platform.h>
-- 
1.7.10.4

^ permalink raw reply related	[flat|nested] 7+ messages in thread

* [PATCH] ARM: Kirkwood: Fix 'SZ_1M' undeclared here for db88f6281-bp-setup.c
  2012-08-30  5:39 [PATCH] ARM: Kirkwood: Fix 'SZ_1M' undeclared here for db88f6281-bp-setup.c Andrew Lunn
@ 2012-08-30 17:12 ` Jason Cooper
  2012-08-30 18:08   ` Andrew Lunn
  0 siblings, 1 reply; 7+ messages in thread
From: Jason Cooper @ 2012-08-30 17:12 UTC (permalink / raw)
  To: linux-arm-kernel

On Thu, Aug 30, 2012 at 07:39:12AM +0200, Andrew Lunn wrote:
> Linux-next has failed to compile for kirkwood since 23 August with:
> 
> arch/arm/mach-kirkwood/db88f6281-bp-setup.c:29: error: 'SZ_1M' undeclared here (not in a function)
> arch/arm/mach-kirkwood/db88f6281-bp-setup.c:33: error: 'SZ_4M' undeclared here (not in a function)
> 
> Add missing <linux/sizes.h>
> 
> Signed-off-by: Andrew Lunn <andrew@lunn.ch>

Applied to: fixes-for-v3.6

Also, I added a CC for stable so greg can pick it up.

thx,

Jason.

> ---
>  arch/arm/mach-kirkwood/db88f6281-bp-setup.c |    1 +
>  1 file changed, 1 insertion(+)
> 
> diff --git a/arch/arm/mach-kirkwood/db88f6281-bp-setup.c b/arch/arm/mach-kirkwood/db88f6281-bp-setup.c
> index d933593..be90b7d 100644
> --- a/arch/arm/mach-kirkwood/db88f6281-bp-setup.c
> +++ b/arch/arm/mach-kirkwood/db88f6281-bp-setup.c
> @@ -10,6 +10,7 @@
>  
>  #include <linux/kernel.h>
>  #include <linux/init.h>
> +#include <linux/sizes.h>
>  #include <linux/platform_device.h>
>  #include <linux/mtd/partitions.h>
>  #include <linux/ata_platform.h>
> -- 
> 1.7.10.4
> 
> 
> _______________________________________________
> linux-arm-kernel mailing list
> linux-arm-kernel at lists.infradead.org
> http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

^ permalink raw reply	[flat|nested] 7+ messages in thread

* [PATCH] ARM: Kirkwood: Fix 'SZ_1M' undeclared here for db88f6281-bp-setup.c
  2012-08-30 17:12 ` Jason Cooper
@ 2012-08-30 18:08   ` Andrew Lunn
  2012-08-30 18:50     ` Jason Cooper
  0 siblings, 1 reply; 7+ messages in thread
From: Andrew Lunn @ 2012-08-30 18:08 UTC (permalink / raw)
  To: linux-arm-kernel

On Thu, Aug 30, 2012 at 01:12:36PM -0400, Jason Cooper wrote:
> On Thu, Aug 30, 2012 at 07:39:12AM +0200, Andrew Lunn wrote:
> > Linux-next has failed to compile for kirkwood since 23 August with:
> > 
> > arch/arm/mach-kirkwood/db88f6281-bp-setup.c:29: error: 'SZ_1M' undeclared here (not in a function)
> > arch/arm/mach-kirkwood/db88f6281-bp-setup.c:33: error: 'SZ_4M' undeclared here (not in a function)
> > 
> > Add missing <linux/sizes.h>
> > 
> > Signed-off-by: Andrew Lunn <andrew@lunn.ch>
> 
> Applied to: fixes-for-v3.6
> 
> Also, I added a CC for stable so greg can pick it up.

Hi Jason

Stable does not need it. As i said, it only broke 23 August with
linux-next. So this is needed for only 3.7.

	    Andrew

^ permalink raw reply	[flat|nested] 7+ messages in thread

* [PATCH] ARM: Kirkwood: Fix 'SZ_1M' undeclared here for db88f6281-bp-setup.c
  2012-08-30 18:08   ` Andrew Lunn
@ 2012-08-30 18:50     ` Jason Cooper
  2012-08-30 18:59       ` Andrew Lunn
  2012-08-31  5:47       ` Andrew Lunn
  0 siblings, 2 replies; 7+ messages in thread
From: Jason Cooper @ 2012-08-30 18:50 UTC (permalink / raw)
  To: linux-arm-kernel

On Thu, Aug 30, 2012 at 08:08:53PM +0200, Andrew Lunn wrote:
> On Thu, Aug 30, 2012 at 01:12:36PM -0400, Jason Cooper wrote:
> > On Thu, Aug 30, 2012 at 07:39:12AM +0200, Andrew Lunn wrote:
> > > Linux-next has failed to compile for kirkwood since 23 August with:
> > > 
> > > arch/arm/mach-kirkwood/db88f6281-bp-setup.c:29: error: 'SZ_1M' undeclared here (not in a function)
> > > arch/arm/mach-kirkwood/db88f6281-bp-setup.c:33: error: 'SZ_4M' undeclared here (not in a function)
> > > 
> > > Add missing <linux/sizes.h>
> > > 
> > > Signed-off-by: Andrew Lunn <andrew@lunn.ch>
> > 
> > Applied to: fixes-for-v3.6
> > 
> > Also, I added a CC for stable so greg can pick it up.
> 
> Stable does not need it. As i said, it only broke 23 August with
> linux-next. So this is needed for only 3.7.

Do we know caused the break?  Is it a fix destined for -stable?

thx,

Jason.

^ permalink raw reply	[flat|nested] 7+ messages in thread

* [PATCH] ARM: Kirkwood: Fix 'SZ_1M' undeclared here for db88f6281-bp-setup.c
  2012-08-30 18:50     ` Jason Cooper
@ 2012-08-30 18:59       ` Andrew Lunn
  2012-08-31  5:47       ` Andrew Lunn
  1 sibling, 0 replies; 7+ messages in thread
From: Andrew Lunn @ 2012-08-30 18:59 UTC (permalink / raw)
  To: linux-arm-kernel

> > Stable does not need it. As i said, it only broke 23 August with
> > linux-next. So this is needed for only 3.7.
> 
> Do we know caused the break?  Is it a fix destined for -stable?

I've not bisected it.

     Andrew

^ permalink raw reply	[flat|nested] 7+ messages in thread

* [PATCH] ARM: Kirkwood: Fix 'SZ_1M' undeclared here for db88f6281-bp-setup.c
  2012-08-30 18:50     ` Jason Cooper
  2012-08-30 18:59       ` Andrew Lunn
@ 2012-08-31  5:47       ` Andrew Lunn
  2012-08-31 15:38         ` Jason Cooper
  1 sibling, 1 reply; 7+ messages in thread
From: Andrew Lunn @ 2012-08-31  5:47 UTC (permalink / raw)
  To: linux-arm-kernel

On Thu, Aug 30, 2012 at 02:50:50PM -0400, Jason Cooper wrote:
> On Thu, Aug 30, 2012 at 08:08:53PM +0200, Andrew Lunn wrote:
> > On Thu, Aug 30, 2012 at 01:12:36PM -0400, Jason Cooper wrote:
> > > On Thu, Aug 30, 2012 at 07:39:12AM +0200, Andrew Lunn wrote:
> > > > Linux-next has failed to compile for kirkwood since 23 August with:
> > > > 
> > > > arch/arm/mach-kirkwood/db88f6281-bp-setup.c:29: error: 'SZ_1M' undeclared here (not in a function)
> > > > arch/arm/mach-kirkwood/db88f6281-bp-setup.c:33: error: 'SZ_4M' undeclared here (not in a function)
> > > > 
> > > > Add missing <linux/sizes.h>
> > > > 
> > > > Signed-off-by: Andrew Lunn <andrew@lunn.ch>
> > > 
> > > Applied to: fixes-for-v3.6
> > > 
> > > Also, I added a CC for stable so greg can pick it up.
> > 
> > Stable does not need it. As i said, it only broke 23 August with
> > linux-next. So this is needed for only 3.7.
> 
> Do we know caused the break?  Is it a fix destined for -stable?

Hi Jason

If im groking the output from gcc -E correctly, it was this change:

http://git.kernel.org/?p=linux/kernel/git/next/linux-next.git;a=commitdiff;h=8f039ba3191e67bf48e560f5737d0c285720d4d8

The #include <asm/memory.h> has been dropped, and its from there that
it was getting <linux/sizes.h>.

This does not look like a change that will get backported to anything
earlier than 3.7.

	Andrew

^ permalink raw reply	[flat|nested] 7+ messages in thread

* [PATCH] ARM: Kirkwood: Fix 'SZ_1M' undeclared here for db88f6281-bp-setup.c
  2012-08-31  5:47       ` Andrew Lunn
@ 2012-08-31 15:38         ` Jason Cooper
  0 siblings, 0 replies; 7+ messages in thread
From: Jason Cooper @ 2012-08-31 15:38 UTC (permalink / raw)
  To: linux-arm-kernel

On Fri, Aug 31, 2012 at 07:47:34AM +0200, Andrew Lunn wrote:
> On Thu, Aug 30, 2012 at 02:50:50PM -0400, Jason Cooper wrote:
> > On Thu, Aug 30, 2012 at 08:08:53PM +0200, Andrew Lunn wrote:
> > > On Thu, Aug 30, 2012 at 01:12:36PM -0400, Jason Cooper wrote:
> > > > On Thu, Aug 30, 2012 at 07:39:12AM +0200, Andrew Lunn wrote:
> > > > > Linux-next has failed to compile for kirkwood since 23 August with:
> > > > > 
> > > > > arch/arm/mach-kirkwood/db88f6281-bp-setup.c:29: error: 'SZ_1M' undeclared here (not in a function)
> > > > > arch/arm/mach-kirkwood/db88f6281-bp-setup.c:33: error: 'SZ_4M' undeclared here (not in a function)
> > > > > 
> > > > > Add missing <linux/sizes.h>
> > > > > 
> > > > > Signed-off-by: Andrew Lunn <andrew@lunn.ch>
> > > > 
> > > > Applied to: fixes-for-v3.6
> > > > 
> > > > Also, I added a CC for stable so greg can pick it up.
> > > 
> > > Stable does not need it. As i said, it only broke 23 August with
> > > linux-next. So this is needed for only 3.7.
> > 
> > Do we know caused the break?  Is it a fix destined for -stable?
> 
> Hi Jason
> 
> If im groking the output from gcc -E correctly, it was this change:
> 
> http://git.kernel.org/?p=linux/kernel/git/next/linux-next.git;a=commitdiff;h=8f039ba3191e67bf48e560f5737d0c285720d4d8
> 
> The #include <asm/memory.h> has been dropped, and its from there that
> it was getting <linux/sizes.h>.
> 
> This does not look like a change that will get backported to anything
> earlier than 3.7.

Ok, Arnd and Olof haven't pulled yet, so I'll issue a new request
without the Cc -stable.

thx,

Jason.

^ permalink raw reply	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2012-08-31 15:38 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-08-30  5:39 [PATCH] ARM: Kirkwood: Fix 'SZ_1M' undeclared here for db88f6281-bp-setup.c Andrew Lunn
2012-08-30 17:12 ` Jason Cooper
2012-08-30 18:08   ` Andrew Lunn
2012-08-30 18:50     ` Jason Cooper
2012-08-30 18:59       ` Andrew Lunn
2012-08-31  5:47       ` Andrew Lunn
2012-08-31 15:38         ` Jason Cooper

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).