projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
a68820d
)
arm: tegra: VMALLOC_END should be unsigned long
author
Olof Johansson
<
[email protected]
>
Wed, 18 Aug 2010 23:26:47 +0000
(18:26 -0500)
committer
Colin Cross
<
[email protected]
>
Sun, 22 Aug 2010 19:54:23 +0000
(12:54 -0700)
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 <
[email protected]
>
Signed-off-by: Colin Cross <
[email protected]
>
arch/arm/mach-tegra/include/mach/vmalloc.h
patch
|
blob
|
history
diff --git
a/arch/arm/mach-tegra/include/mach/vmalloc.h
b/arch/arm/mach-tegra/include/mach/vmalloc.h
index 267a141730d9c94fa59a7c0acbd5bbc6426e79d2..fd6aa65b2dc6ab433cc7a3f2ca45cf9128294f38 100644
(file)
--- 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 0xFE000000
UL
#endif