diff options
| author | Dave Jones <davej@codemonkey.org.uk> | 2002-10-31 22:22:26 -0800 |
|---|---|---|
| committer | Dave Jones <davej@codemonkey.org.uk> | 2002-10-31 22:22:26 -0800 |
| commit | d1aefb8bd2e73c6c7b9b0f0c4a120723ab470e22 (patch) | |
| tree | a285d08dc9bdbd6c7a5642f61b407e2fc4468cb3 | |
| parent | da8b40ad5839562ad36d68698af1d2361218e714 (diff) | |
[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.
| -rw-r--r-- | arch/i386/kernel/cpu/common.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/arch/i386/kernel/cpu/common.c b/arch/i386/kernel/cpu/common.c index 23196a7e0526..d6a0308b66ba 100644 --- a/arch/i386/kernel/cpu/common.c +++ b/arch/i386/kernel/cpu/common.c @@ -319,9 +319,6 @@ void __init identify_cpu(struct cpuinfo_x86 *c) 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 ( !c->x86_model_id[0] ) { char *p; @@ -359,6 +356,9 @@ void __init identify_cpu(struct cpuinfo_x86 *c) boot_cpu_data.x86_capability[1], boot_cpu_data.x86_capability[2], 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 |
