diff options
author | Magnus Damm <damm@opensource.se> | 2010-12-15 10:59:24 +0000 |
---|---|---|
committer | Paul Mundt <lethal@linux-sh.org> | 2010-12-17 19:41:13 +0900 |
commit | 676b14c36de5bea83f7666e5f5965188426b97a7 (patch) | |
tree | f62653954bed2c2cabae7598fcf891e5b538bd8e /arch | |
parent | b3444d164be8f977f4133ef0c6f4a18f2741373f (diff) | |
download | linux-stable-676b14c36de5bea83f7666e5f5965188426b97a7.tar.gz linux-stable-676b14c36de5bea83f7666e5f5965188426b97a7.tar.bz2 linux-stable-676b14c36de5bea83f7666e5f5965188426b97a7.zip |
ARM: mach-shmobile: fix compile warning in mm/init.c
Turn down the warning noise from the compiler,
basically a SH-Mobile specific version of the
patch located in the RMK patch tracker:
6484/1: "fix compile warning in mm/init.c",
Without this patch the following warning triggers:
CC arch/arm/kernel/sys_arm.o
arch/arm/mm/init.c: In function 'mem_init':
arch/arm/mm/init.c:606: warning: format '%08lx' expects type 'long unsigned int', but argument 12 has type 'unsigned int'
CC arch/arm/kernel/traps.o
Signed-off-by: Magnus Damm <damm@opensource.se>
Signed-off-by: Paul Mundt <lethal@linux-sh.org>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/arm/mach-shmobile/include/mach/vmalloc.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/mach-shmobile/include/mach/vmalloc.h b/arch/arm/mach-shmobile/include/mach/vmalloc.h index 4aecf6e3a859..2b8fd8b942fe 100644 --- a/arch/arm/mach-shmobile/include/mach/vmalloc.h +++ b/arch/arm/mach-shmobile/include/mach/vmalloc.h @@ -2,6 +2,6 @@ #define __ASM_MACH_VMALLOC_H /* Vmalloc at ... - 0xe5ffffff */ -#define VMALLOC_END 0xe6000000 +#define VMALLOC_END 0xe6000000UL #endif /* __ASM_MACH_VMALLOC_H */ |