From: viresh kumar Date: Wed, 16 Feb 2011 06:40:27 +0000 (+0100) Subject: ARM: 6720/1: SPEAr: Append UL to VMALLOC_END X-Git-Tag: v2.6.38-rc8~2^2~17 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=d16613586aa064d87ef05e3b929e3b4fdc714cc4;p=platform%2Fkernel%2Flinux-3.10.git ARM: 6720/1: SPEAr: Append UL to VMALLOC_END 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 Signed-off-by: Viresh Kumar Signed-off-by: Russell King --- diff --git a/arch/arm/plat-spear/include/plat/vmalloc.h b/arch/arm/plat-spear/include/plat/vmalloc.h index 09e9372..8c8b24d 100644 --- a/arch/arm/plat-spear/include/plat/vmalloc.h +++ b/arch/arm/plat-spear/include/plat/vmalloc.h @@ -14,6 +14,6 @@ #ifndef __PLAT_VMALLOC_H #define __PLAT_VMALLOC_H -#define VMALLOC_END 0xF0000000 +#define VMALLOC_END 0xF0000000UL #endif /* __PLAT_VMALLOC_H */