Commit d1aefb8b authored by Dave Jones's avatar Dave Jones

[PATCH] Clean up capabilities printing.

The machine check initialisation prints some blurb
which makes the capabilities dumping a little untidy.
By initialising it slightly later, we get something that
looks a lot better.
parent da8b40ad
...@@ -319,9 +319,6 @@ void __init identify_cpu(struct cpuinfo_x86 *c) ...@@ -319,9 +319,6 @@ void __init identify_cpu(struct cpuinfo_x86 *c)
clear_bit(X86_FEATURE_XMM, c->x86_capability); clear_bit(X86_FEATURE_XMM, c->x86_capability);
} }
/* Init Machine Check Exception if available. */
mcheck_init(c);
/* If the model name is still unset, do table lookup. */ /* If the model name is still unset, do table lookup. */
if ( !c->x86_model_id[0] ) { if ( !c->x86_model_id[0] ) {
char *p; char *p;
...@@ -359,6 +356,9 @@ void __init identify_cpu(struct cpuinfo_x86 *c) ...@@ -359,6 +356,9 @@ void __init identify_cpu(struct cpuinfo_x86 *c)
boot_cpu_data.x86_capability[1], boot_cpu_data.x86_capability[1],
boot_cpu_data.x86_capability[2], boot_cpu_data.x86_capability[2],
boot_cpu_data.x86_capability[3]); boot_cpu_data.x86_capability[3]);
/* Init Machine Check Exception if available. */
mcheck_init(c);
} }
/* /*
* Perform early boot up checks for a valid TSC. See arch/i386/kernel/time.c * Perform early boot up checks for a valid TSC. See arch/i386/kernel/time.c
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment