Skip to content

Commit

Permalink
ARM: 6720/1: SPEAr: Append UL to VMALLOC_END
Browse files Browse the repository at this point in the history
This patch fixes following warning:
arch/arm/mm/init.c:606: warning: format '%08lx' expects type 'long unsigned int', but argument 12 has type 'unsigned int'

by appending UL to VMALLOC_END's Number.

Reviewed-by: Stanley Miao <stanley.miao@windriver.com>
Signed-off-by: Viresh Kumar <viresh.kumar@st.com>
Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
  • Loading branch information
viresh kumar authored and Russell King committed Feb 21, 2011
1 parent 315cfe7 commit d166135
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion arch/arm/plat-spear/include/plat/vmalloc.h
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,6 @@
#ifndef __PLAT_VMALLOC_H
#define __PLAT_VMALLOC_H

#define VMALLOC_END 0xF0000000
#define VMALLOC_END 0xF0000000UL

#endif /* __PLAT_VMALLOC_H */

0 comments on commit d166135

Please sign in to comment.