aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--arch/x86/include/asm/x86_init.h2
-rw-r--r--arch/x86/kernel/head32.c4
-rw-r--r--arch/x86/kernel/head64.c3
-rw-r--r--arch/x86/kernel/x86_init.c2
4 files changed, 7 insertions, 4 deletions
diff --git a/arch/x86/include/asm/x86_init.h b/arch/x86/include/asm/x86_init.h
index d0d9be25ed93..8a971cb3dd3f 100644
--- a/arch/x86/include/asm/x86_init.h
+++ b/arch/x86/include/asm/x86_init.h
@@ -6,11 +6,13 @@
6 * @probe_roms: probe BIOS roms 6 * @probe_roms: probe BIOS roms
7 * @reserve_resources: reserve the standard resources for the 7 * @reserve_resources: reserve the standard resources for the
8 * platform 8 * platform
9 * @reserve_ebda_region: reserve the extended bios data area
9 * 10 *
10 */ 11 */
11struct x86_init_resources { 12struct x86_init_resources {
12 void (*probe_roms)(void); 13 void (*probe_roms)(void);
13 void (*reserve_resources)(void); 14 void (*reserve_resources)(void);
15 void (*reserve_ebda_region)(void);
14}; 16};
15 17
16/** 18/**
diff --git a/arch/x86/kernel/head32.c b/arch/x86/kernel/head32.c
index d91c37c02069..921a23b6c145 100644
--- a/arch/x86/kernel/head32.c
+++ b/arch/x86/kernel/head32.c
@@ -11,7 +11,7 @@
11#include <asm/setup.h> 11#include <asm/setup.h>
12#include <asm/sections.h> 12#include <asm/sections.h>
13#include <asm/e820.h> 13#include <asm/e820.h>
14#include <asm/bios_ebda.h> 14#include <asm/page.h>
15#include <asm/trampoline.h> 15#include <asm/trampoline.h>
16 16
17void __init i386_start_kernel(void) 17void __init i386_start_kernel(void)
@@ -33,7 +33,7 @@ void __init i386_start_kernel(void)
33 x86_init.resources.probe_roms = probe_roms; 33 x86_init.resources.probe_roms = probe_roms;
34 x86_init.resources.reserve_resources = i386_reserve_resources; 34 x86_init.resources.reserve_resources = i386_reserve_resources;
35 35
36 reserve_ebda_region(); 36 x86_init.resources.reserve_ebda_region();
37 37
38 /* 38 /*
39 * At this point everything still needed from the boot loader 39 * At this point everything still needed from the boot loader
diff --git a/arch/x86/kernel/head64.c b/arch/x86/kernel/head64.c
index 70eaa852c732..cead8149c3de 100644
--- a/arch/x86/kernel/head64.c
+++ b/arch/x86/kernel/head64.c
@@ -23,7 +23,6 @@
23#include <asm/sections.h> 23#include <asm/sections.h>
24#include <asm/kdebug.h> 24#include <asm/kdebug.h>
25#include <asm/e820.h> 25#include <asm/e820.h>
26#include <asm/bios_ebda.h>
27#include <asm/trampoline.h> 26#include <asm/trampoline.h>
28 27
29static void __init zap_identity_mappings(void) 28static void __init zap_identity_mappings(void)
@@ -112,7 +111,7 @@ void __init x86_64_start_reservations(char *real_mode_data)
112 } 111 }
113#endif 112#endif
114 113
115 reserve_ebda_region(); 114 x86_init.resources.reserve_ebda_region();
116 115
117 /* 116 /*
118 * At this point everything still needed from the boot loader 117 * At this point everything still needed from the boot loader
diff --git a/arch/x86/kernel/x86_init.c b/arch/x86/kernel/x86_init.c
index 68c093b67ecf..1fff49a6858c 100644
--- a/arch/x86/kernel/x86_init.c
+++ b/arch/x86/kernel/x86_init.c
@@ -5,6 +5,7 @@
5 */ 5 */
6#include <linux/init.h> 6#include <linux/init.h>
7 7
8#include <asm/bios_ebda.h>
8#include <asm/setup.h> 9#include <asm/setup.h>
9 10
10void __cpuinit x86_init_noop(void) { } 11void __cpuinit x86_init_noop(void) { }
@@ -18,5 +19,6 @@ struct __initdata x86_init_ops x86_init = {
18 .resources = { 19 .resources = {
19 .probe_roms = x86_init_noop, 20 .probe_roms = x86_init_noop,
20 .reserve_resources = reserve_standard_io_resources, 21 .reserve_resources = reserve_standard_io_resources,
22 .reserve_ebda_region = reserve_ebda_region,
21 }, 23 },
22}; 24};