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

Commit c931b4f6 authored by Fenkart/Bostandzhyan's avatar Fenkart/Bostandzhyan Committed by Russell King
Browse files

ARM: 5928/1: Change type of VMALLOC_END to unsigned long.



Makes it consistent with VMALLOC_START

Tested-by: default avatarH Hartley Sweeten <hsweeten@visionengravers.com>
Signed-off-by: default avatarAndreas Fenkart <andreas.fenkart@streamunlimited.com>
Signed-off-by: default avatarRussell King <rmk+kernel@arm.linux.org.uk>
parent a7bd08c8
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -104,11 +104,11 @@
#endif

#ifndef PHYS_OFFSET
#define PHYS_OFFSET 		(CONFIG_DRAM_BASE)
#define PHYS_OFFSET 		UL(CONFIG_DRAM_BASE)
#endif

#ifndef END_MEM
#define END_MEM     		(CONFIG_DRAM_BASE + CONFIG_DRAM_SIZE)
#define END_MEM     		(UL(CONFIG_DRAM_BASE) + CONFIG_DRAM_SIZE)
#endif

#ifndef PAGE_OFFSET
+2 −2
Original line number Diff line number Diff line
@@ -86,8 +86,8 @@ extern unsigned int kobjsize(const void *objp);
 * All 32bit addresses are effectively valid for vmalloc...
 * Sort of meaningless for non-VM targets.
 */
#define	VMALLOC_START	0
#define	VMALLOC_END	0xffffffff
#define	VMALLOC_START	0UL
#define	VMALLOC_END	0xffffffffUL

#define FIRST_USER_ADDRESS      (0)

+1 −1
Original line number Diff line number Diff line
@@ -27,7 +27,7 @@
/*
 * I/O mapping
 */
#define IO_PHYS				0x01c00000
#define IO_PHYS				0x01c00000UL
#define IO_OFFSET			0xfd000000 /* Virtual IO = 0xfec00000 */
#define IO_SIZE				0x00400000
#define IO_VIRT				(IO_PHYS + IO_OFFSET)
+1 −1
Original line number Diff line number Diff line
@@ -2,4 +2,4 @@
 * arch/arm/mach-dove/include/mach/vmalloc.h
 */

#define VMALLOC_END	0xfd800000
#define VMALLOC_END	0xfd800000UL
+1 −1
Original line number Diff line number Diff line
@@ -2,4 +2,4 @@
 * arch/arm/mach-ep93xx/include/mach/vmalloc.h
 */

#define VMALLOC_END	0xfe800000
#define VMALLOC_END	0xfe800000UL
Loading