diff options
author | Thomas Gleixner <tglx@linutronix.de> | 2009-08-19 14:55:50 +0200 |
---|---|---|
committer | Thomas Gleixner <tglx@linutronix.de> | 2009-08-27 17:12:52 +0200 |
commit | 8fee697d990c54976c8dc167270633299e2515d2 (patch) | |
tree | 2236f4907bf6586892df8412224c415581311948 /arch/x86/kernel/head32.c | |
parent | f7cf5a5b8c0e59eac8d30b62271cb0fa52e53ebc (diff) | |
download | op-kernel-dev-8fee697d990c54976c8dc167270633299e2515d2.zip op-kernel-dev-8fee697d990c54976c8dc167270633299e2515d2.tar.gz |
x86: Add request_standard_resources to x86_init
The 32bit and the 64bit code are slighty different in the reservation
of standard resources. Also the upcoming Moorestown support needs its
own version of that.
Add it to x86_init_ops and initialize it with the 64bit default. 32bit
overrides it in early boot. Now moorestown can add it's own override
w/o sprinkling the code with more #ifdefs
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Diffstat (limited to 'arch/x86/kernel/head32.c')
-rw-r--r-- | arch/x86/kernel/head32.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/x86/kernel/head32.c b/arch/x86/kernel/head32.c index 4049353..d91c37c 100644 --- a/arch/x86/kernel/head32.c +++ b/arch/x86/kernel/head32.c @@ -31,6 +31,7 @@ void __init i386_start_kernel(void) #endif /* Initilize 32bit specific setup functions */ x86_init.resources.probe_roms = probe_roms; + x86_init.resources.reserve_resources = i386_reserve_resources; reserve_ebda_region(); |