]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
arm: fix implicit use of page.h in mach-bcmring/mach-jornada
authorPaul Gortmaker <paul.gortmaker@windriver.com>
Sun, 31 Jul 2011 22:38:45 +0000 (18:38 -0400)
committerPaul Gortmaker <paul.gortmaker@windriver.com>
Thu, 25 Aug 2011 17:54:49 +0000 (13:54 -0400)
Add the include to fix this:

arch/arm/mach-sa1100/jornada720.c:278: error: 'PAGE_SHIFT' undeclared here (not in a function)
make[3]: *** [arch/arm/mach-sa1100/jornada720.o] Error 1

arch/arm/mach-bcmring/mm.c:32: error: 'PAGE_SHIFT' undeclared here (not in a function)
make[3]: *** [arch/arm/mach-bcmring/mm.o] Error 1

Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
arch/arm/mach-bcmring/mm.c
arch/arm/mach-sa1100/jornada720.c

index 0f1c37e4523ae530544c29260917a1ff385273ae..293b6d3e0d1dbc4824337e820c0f9ff50ac22fee 100644 (file)
@@ -13,6 +13,7 @@
 *****************************************************************************/
 
 #include <linux/platform_device.h>
+#include <asm/page.h>
 #include <asm/mach/map.h>
 
 #include <mach/hardware.h>
index 176c066aec7e756ce24f04f33d0da4bbb8d53b0d..311c997407747ca1ac0283806af774965c30943b 100644 (file)
@@ -26,6 +26,7 @@
 #include <mach/hardware.h>
 #include <asm/hardware/sa1111.h>
 #include <asm/irq.h>
+#include <asm/page.h>
 #include <asm/mach-types.h>
 #include <asm/setup.h>
 #include <asm/mach/arch.h>