mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-08-04 08:17:46 +00:00

Acked-by: Tony Lindgren <tony@atomide.com> Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
15 lines
273 B
C
15 lines
273 B
C
#ifndef _ASM_ARM_MEMBLOCK_H
|
|
#define _ASM_ARM_MEMBLOCK_H
|
|
|
|
#ifdef CONFIG_MMU
|
|
extern phys_addr_t lowmem_end_addr;
|
|
#define MEMBLOCK_REAL_LIMIT lowmem_end_addr
|
|
#else
|
|
#define MEMBLOCK_REAL_LIMIT 0
|
|
#endif
|
|
|
|
struct meminfo;
|
|
|
|
extern void arm_memblock_init(struct meminfo *);
|
|
|
|
#endif
|