aboutsummaryrefslogtreecommitdiffstats
path: root/include/asm-x86/e820_32.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/asm-x86/e820_32.h')
-rw-r--r--include/asm-x86/e820_32.h24
1 files changed, 0 insertions, 24 deletions
diff --git a/include/asm-x86/e820_32.h b/include/asm-x86/e820_32.h
deleted file mode 100644
index 557b890549ff..000000000000
--- a/include/asm-x86/e820_32.h
+++ /dev/null
@@ -1,24 +0,0 @@
1/*
2 * structures and definitions for the int 15, ax=e820 memory map
3 * scheme.
4 *
5 * In a nutshell, arch/i386/boot/setup.S populates a scratch table
6 * in the empty_zero_block that contains a list of usable address/size
7 * duples. In arch/i386/kernel/setup.c, this information is
8 * transferred into the e820map, and in arch/i386/mm/init.c, that
9 * new information is used to mark pages reserved or not.
10 *
11 */
12#ifndef __E820_HEADER
13#define __E820_HEADER
14
15#include <linux/ioport.h>
16
17#define HIGH_MEMORY (1024*1024)
18
19#ifndef __ASSEMBLY__
20
21extern void setup_memory_map(void);
22
23#endif/*!__ASSEMBLY__*/
24#endif/*__E820_HEADER*/