diff options
author | Huang, Ying <ying.huang@intel.com> | 2008-06-02 02:26:25 -0400 |
---|---|---|
committer | Thomas Gleixner <tglx@linutronix.de> | 2008-06-05 09:10:02 -0400 |
commit | c45a707dbe35cb9aa6490223e5b1129fa3583948 (patch) | |
tree | d9299dc6c099cc91c7a00370515146e3999ae5d5 /arch/x86/kernel/head64.c | |
parent | 0c51a965ed3c44dd50497e74492a015680e49899 (diff) |
x86: linked list of setup_data for i386
This patch adds linked list of struct setup_data supported for i386.
Signed-off-by: Huang Ying <ying.huang@intel.com>
Cc: andi@firstfloor.org
Cc: mingo@redhat.com
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Diffstat (limited to 'arch/x86/kernel/head64.c')
-rw-r--r-- | arch/x86/kernel/head64.c | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/arch/x86/kernel/head64.c b/arch/x86/kernel/head64.c index f1773c8ee21e..5fbed459ff3b 100644 --- a/arch/x86/kernel/head64.c +++ b/arch/x86/kernel/head64.c | |||
@@ -51,24 +51,6 @@ static void __init copy_bootdata(char *real_mode_data) | |||
51 | } | 51 | } |
52 | } | 52 | } |
53 | 53 | ||
54 | static void __init reserve_setup_data(void) | ||
55 | { | ||
56 | struct setup_data *data; | ||
57 | unsigned long pa_data; | ||
58 | char buf[32]; | ||
59 | |||
60 | if (boot_params.hdr.version < 0x0209) | ||
61 | return; | ||
62 | pa_data = boot_params.hdr.setup_data; | ||
63 | while (pa_data) { | ||
64 | data = early_ioremap(pa_data, sizeof(*data)); | ||
65 | sprintf(buf, "setup data %x", data->type); | ||
66 | reserve_early(pa_data, pa_data+sizeof(*data)+data->len, buf); | ||
67 | pa_data = data->next; | ||
68 | early_iounmap(data, sizeof(*data)); | ||
69 | } | ||
70 | } | ||
71 | |||
72 | void __init x86_64_start_kernel(char * real_mode_data) | 54 | void __init x86_64_start_kernel(char * real_mode_data) |
73 | { | 55 | { |
74 | int i; | 56 | int i; |