summaryrefslogtreecommitdiff
path: root/arch/arm/include/asm/pgtable-nommu.h
diff options
context:
space:
mode:
authorFenkart/Bostandzhyan <andreas.fenkart@streamunlimited.com>2010-02-07 21:47:17 +0100
committerRussell King <rmk+kernel@arm.linux.org.uk>2010-02-15 21:40:33 +0000
commitc931b4f655a1b86c929384e674eb8c31795f3bd7 (patch)
tree2787c5ed4bf2918fa6fd96ac0a2a92b43889cf7e /arch/arm/include/asm/pgtable-nommu.h
parenta7bd08c82e4f74387a39eeebb942712f23967420 (diff)
ARM: 5928/1: Change type of VMALLOC_END to unsigned long.
Makes it consistent with VMALLOC_START Tested-by: H Hartley Sweeten <hsweeten@visionengravers.com> Signed-off-by: Andreas Fenkart <andreas.fenkart@streamunlimited.com> Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
Diffstat (limited to 'arch/arm/include/asm/pgtable-nommu.h')
-rw-r--r--arch/arm/include/asm/pgtable-nommu.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/arm/include/asm/pgtable-nommu.h b/arch/arm/include/asm/pgtable-nommu.h
index b011f2e939aa..013cfcdc4839 100644
--- a/arch/arm/include/asm/pgtable-nommu.h
+++ b/arch/arm/include/asm/pgtable-nommu.h
@@ -86,8 +86,8 @@ extern unsigned int kobjsize(const void *objp);
* All 32bit addresses are effectively valid for vmalloc...
* Sort of meaningless for non-VM targets.
*/
-#define VMALLOC_START 0
-#define VMALLOC_END 0xffffffff
+#define VMALLOC_START 0UL
+#define VMALLOC_END 0xffffffffUL
#define FIRST_USER_ADDRESS (0)