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 <stanley.miao@windriver.com>
Signed-off-by: Viresh Kumar <viresh.kumar@st.com>
Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>

authored by viresh kumar and committed by Russell King d1661358 315cfe78

+1 -1
+1 -1
arch/arm/plat-spear/include/plat/vmalloc.h
··· 14 14 #ifndef __PLAT_VMALLOC_H 15 15 #define __PLAT_VMALLOC_H 16 16 17 - #define VMALLOC_END 0xF0000000 17 + #define VMALLOC_END 0xF0000000UL 18 18 19 19 #endif /* __PLAT_VMALLOC_H */