aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--arch/x86_64/kernel/e820.c2
-rw-r--r--arch/x86_64/kernel/setup.c1
2 files changed, 2 insertions, 1 deletions
diff --git a/arch/x86_64/kernel/e820.c b/arch/x86_64/kernel/e820.c
index a4739dc82937..164d0b83dc92 100644
--- a/arch/x86_64/kernel/e820.c
+++ b/arch/x86_64/kernel/e820.c
@@ -24,6 +24,8 @@
24#include <asm/bootsetup.h> 24#include <asm/bootsetup.h>
25#include <asm/sections.h> 25#include <asm/sections.h>
26 26
27struct e820map e820 __initdata;
28
27/* 29/*
28 * PFN of last memory page. 30 * PFN of last memory page.
29 */ 31 */
diff --git a/arch/x86_64/kernel/setup.c b/arch/x86_64/kernel/setup.c
index b85528597aa8..4be29832e3dc 100644
--- a/arch/x86_64/kernel/setup.c
+++ b/arch/x86_64/kernel/setup.c
@@ -97,7 +97,6 @@ struct sys_desc_table_struct {
97 97
98struct edid_info edid_info; 98struct edid_info edid_info;
99EXPORT_SYMBOL_GPL(edid_info); 99EXPORT_SYMBOL_GPL(edid_info);
100struct e820map e820;
101 100
102extern int root_mountflags; 101extern int root_mountflags;
103 102