ARM: 6720/1: SPEAr: Append UL to VMALLOC_END
authorviresh kumar <[email protected]>
Wed, 16 Feb 2011 06:40:27 +0000 (07:40 +0100)
committerRussell King <[email protected]>
Mon, 21 Feb 2011 19:29:20 +0000 (19:29 +0000)
This patch fixes following warning:
arch/arm/mm/init.c:606: warning: format '%08lx' expects type 'long unsigned int', but argument 12 has type 'unsigned int'

by appending UL to VMALLOC_END's Number.

Reviewed-by: Stanley Miao <[email protected]>
Signed-off-by: Viresh Kumar <[email protected]>
Signed-off-by: Russell King <[email protected]>
arch/arm/plat-spear/include/plat/vmalloc.h

index 09e9372aea21b01e59ec6e833497ca8786e9adc2..8c8b24d0704657d537eb43210cf8e4159ef04c13 100644 (file)
@@ -14,6 +14,6 @@
 #ifndef __PLAT_VMALLOC_H
 #define __PLAT_VMALLOC_H
 
-#define VMALLOC_END            0xF0000000
+#define VMALLOC_END            0xF0000000UL
 
 #endif /* __PLAT_VMALLOC_H */