ARM: S5P: VMALLOC_END should be unsigned long
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: Kyungmin Park <kyungmin.park@samsung.com> Signed-off-by: Kukjin Kim <kgene.kim@samsung.com>
This commit is contained in:
parent
76be97c1fc
commit
c1eea3756a
|
@ -17,6 +17,6 @@
|
||||||
#ifndef __ASM_ARCH_VMALLOC_H
|
#ifndef __ASM_ARCH_VMALLOC_H
|
||||||
#define __ASM_ARCH_VMALLOC_H __FILE__
|
#define __ASM_ARCH_VMALLOC_H __FILE__
|
||||||
|
|
||||||
#define VMALLOC_END (0xE0000000)
|
#define VMALLOC_END (0xE0000000UL)
|
||||||
|
|
||||||
#endif /* __ASM_ARCH_VMALLOC_H */
|
#endif /* __ASM_ARCH_VMALLOC_H */
|
||||||
|
|
|
@ -17,6 +17,6 @@
|
||||||
#ifndef __ASM_ARCH_VMALLOC_H
|
#ifndef __ASM_ARCH_VMALLOC_H
|
||||||
#define __ASM_ARCH_VMALLOC_H __FILE__
|
#define __ASM_ARCH_VMALLOC_H __FILE__
|
||||||
|
|
||||||
#define VMALLOC_END (0xF0000000)
|
#define VMALLOC_END (0xF0000000UL)
|
||||||
|
|
||||||
#endif /* __ASM_ARCH_VMALLOC_H */
|
#endif /* __ASM_ARCH_VMALLOC_H */
|
||||||
|
|
Loading…
Reference in New Issue