Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 42537eff authored by Olof Johansson's avatar Olof Johansson Committed by Colin Cross
Browse files

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: default avatarOlof Johansson <olof@lixom.net>
Signed-off-by: default avatarColin Cross <ccross@google.com>
parent a68820db
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -23,6 +23,6 @@

#include <asm/sizes.h>

#define VMALLOC_END        0xFE000000
#define VMALLOC_END        0xFE000000UL

#endif