From: Paul Gortmaker Date: Sun, 31 Jul 2011 22:38:45 +0000 (-0400) Subject: arm: fix implicit use of page.h in mach-bcmring/mach-jornada X-Git-Tag: next-20110826~3^2~155 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=40cc7fb8003b826a20a936dc4526f35f5a5fd201;p=karo-tx-linux.git arm: fix implicit use of page.h in mach-bcmring/mach-jornada 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 --- diff --git a/arch/arm/mach-bcmring/mm.c b/arch/arm/mach-bcmring/mm.c index 0f1c37e4523a..293b6d3e0d1d 100644 --- a/arch/arm/mach-bcmring/mm.c +++ b/arch/arm/mach-bcmring/mm.c @@ -13,6 +13,7 @@ *****************************************************************************/ #include +#include #include #include diff --git a/arch/arm/mach-sa1100/jornada720.c b/arch/arm/mach-sa1100/jornada720.c index 176c066aec7e..311c99740774 100644 --- a/arch/arm/mach-sa1100/jornada720.c +++ b/arch/arm/mach-sa1100/jornada720.c @@ -26,6 +26,7 @@ #include #include #include +#include #include #include #include