x86: coding style fixes to arch/x86/kernel/cpu/umc.c
authorPaolo Ciarrocchi <paolo.ciarrocchi@gmail.com>
Wed, 20 Feb 2008 23:18:34 +0000 (00:18 +0100)
committerIngo Molnar <mingo@elte.hu>
Thu, 17 Apr 2008 15:40:49 +0000 (17:40 +0200)
Before:
   total: 3 errors, 1 warnings, 23 lines checked
After:
   total: 0 errors, 0 warnings, 25 lines checked

No code changed:

arch/x86/kernel/cpu/umc.o:

   text    data     bss     dec     hex filename
     24     616       0     640     280 umc.o.before
     24     616       0     640     280 umc.o.after

md5:
   e8daa3eaed0963a0cdd2e83c2e1f9823  umc.o.before.asm
   e8daa3eaed0963a0cdd2e83c2e1f9823  umc.o.after.asm

Signed-off-by: Paolo Ciarrocchi <paolo.ciarrocchi@gmail.com>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
arch/x86/kernel/cpu/umc.c

index b1acf08..b1fc909 100644 (file)
@@ -3,17 +3,19 @@
 #include <asm/processor.h>
 #include "cpu.h"
 
-/* UMC chips appear to be only either 386 or 486, so no special init takes place.
+/*
+ * UMC chips appear to be only either 386 or 486,
+ * so no special init takes place.
  */
 
 static struct cpu_dev umc_cpu_dev __cpuinitdata = {
        .c_vendor       = "UMC",
-       .c_ident        = { "UMC UMC UMC" },
+       .c_ident        = { "UMC UMC UMC" },
        .c_models = {
                { .vendor = X86_VENDOR_UMC, .family = 4, .model_names =
-                 { 
-                         [1] = "U5D", 
-                         [2] = "U5S", 
+                 {
+                         [1] = "U5D",
+                         [2] = "U5S",
                  }
                },
        },