[PATCH] Clean up capabilities printing.

From: davej@codemonkey.org.uk
Date: Sat Oct 26 2002 - 07:42:28 EST


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.

diff -urpN --exclude-from=/home/davej/.exclude bk-linus/arch/i386/kernel/cpu/common.c linux-2.5/arch/i386/kernel/cpu/common.c
--- bk-linus/arch/i386/kernel/cpu/common.c 2002-10-20 20:21:24.000000000 -0100
+++ linux-2.5/arch/i386/kernel/cpu/common.c 2002-10-25 15:39:26.000000000 -0100
@@ -315,9 +315,6 @@ void __init identify_cpu(struct cpuinfo_
                 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;
@@ -355,6 +352,9 @@ void __init identify_cpu(struct cpuinfo_
                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
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/



This archive was generated by hypermail 2b29 : Thu Oct 31 2002 - 22:00:31 EST