diff options
author | Olof Johansson <olof@lixom.net> | 2010-08-18 18:26:47 -0500 |
---|---|---|
committer | Colin Cross <ccross@google.com> | 2010-08-22 12:54:23 -0700 |
commit | 42537eff861baccf3912e16ac4fd15a10fda2136 (patch) | |
tree | bce8bea59315469f1707c5ab99e6fec44c57b522 /arch | |
parent | a68820db790351076039f936fa6317a2b3439e55 (diff) | |
download | op-kernel-dev-42537eff861baccf3912e16ac4fd15a10fda2136.zip op-kernel-dev-42537eff861baccf3912e16ac4fd15a10fda2136.tar.gz |
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')
-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 267a141..fd6aa65 100644 --- a/arch/arm/mach-tegra/include/mach/vmalloc.h +++ b/arch/arm/mach-tegra/include/mach/vmalloc.h @@ -23,6 +23,6 @@ #include <asm/sizes.h> -#define VMALLOC_END 0xFE000000 +#define VMALLOC_END 0xFE000000UL #endif |