Skip to content

Commit

Permalink
arm: tegra: VMALLOC_END should be unsigned long
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Olof Johansson authored and Colin Cross committed Aug 22, 2010
1 parent a68820d commit 42537ef
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion arch/arm/mach-tegra/include/mach/vmalloc.h
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,6 @@

#include <asm/sizes.h>

#define VMALLOC_END 0xFE000000
#define VMALLOC_END 0xFE000000UL

#endif

0 comments on commit 42537ef

Please sign in to comment.