arm: tegra: VMALLOC_END should be unsigned long
authorOlof Johansson <olof@lixom.net>
Wed, 18 Aug 2010 23:26:47 +0000 (18:26 -0500)
committerColin Cross <ccross@google.com>
Sun, 22 Aug 2010 19:54:23 +0000 (12:54 -0700)
Silences following build warning:

arch/arm/mm/init.c: In function 'mem_init':
arch/arm/mm/init.c:644: warning: format '%08lx' expects type 'long
unsigned int', but argument 12 has type 'unsigned int'

Signed-off-by: Olof Johansson <olof@lixom.net>
Signed-off-by: Colin Cross <ccross@google.com>
arch/arm/mach-tegra/include/mach/vmalloc.h

index 267a141..fd6aa65 100644 (file)
@@ -23,6 +23,6 @@
 
 #include <asm/sizes.h>
 
-#define VMALLOC_END        0xFE000000
+#define VMALLOC_END        0xFE000000UL
 
 #endif