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>
This commit is contained in:
Olof Johansson 2010-08-18 18:26:47 -05:00 коммит произвёл Colin Cross
Родитель a68820db79
Коммит 42537eff86
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -23,6 +23,6 @@
#include <asm/sizes.h>
#define VMALLOC_END 0xFE000000
#define VMALLOC_END 0xFE000000UL
#endif