You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
317 B
16 lines
317 B
#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;
|
|
struct machine_desc;
|
|
|
|
extern void arm_memblock_init(struct meminfo *, struct machine_desc *);
|
|
|
|
#endif
|
|
|