diff options
author | Olof Johansson <olof@lixom.net> | 2010-08-18 19:26:47 -0400 |
---|---|---|
committer | Colin Cross <ccross@google.com> | 2010-08-22 15:54:23 -0400 |
commit | 42537eff861baccf3912e16ac4fd15a10fda2136 (patch) | |
tree | bce8bea59315469f1707c5ab99e6fec44c57b522 /arch/arm | |
parent | a68820db790351076039f936fa6317a2b3439e55 (diff) |
arm: tegra: 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: Olof Johansson <olof@lixom.net>
Signed-off-by: Colin Cross <ccross@google.com>
Diffstat (limited to 'arch/arm')
-rw-r--r-- | arch/arm/mach-tegra/include/mach/vmalloc.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/mach-tegra/include/mach/vmalloc.h b/arch/arm/mach-tegra/include/mach/vmalloc.h index 267a141730d9..fd6aa65b2dc6 100644 --- a/arch/arm/mach-tegra/include/mach/vmalloc.h +++ b/arch/arm/mach-tegra/include/mach/vmalloc.h | |||
@@ -23,6 +23,6 @@ | |||
23 | 23 | ||
24 | #include <asm/sizes.h> | 24 | #include <asm/sizes.h> |
25 | 25 | ||
26 | #define VMALLOC_END 0xFE000000 | 26 | #define VMALLOC_END 0xFE000000UL |
27 | 27 | ||
28 | #endif | 28 | #endif |