Author: stepan
Date: Sun May 30 14:35:39 2010
New Revision: 5598
URL: https://tracker.coreboot.org/trac/coreboot/changeset/5598

Log:
whitespace cleanup inteltool cpu.c
Signed-off-by: Stefan Reinauer <[email protected]>
Acked-by: Stefan Reinauer <[email protected]>

Modified:
   trunk/util/inteltool/cpu.c

Modified: trunk/util/inteltool/cpu.c
==============================================================================
--- trunk/util/inteltool/cpu.c  Sun May 30 14:33:12 2010        (r5597)
+++ trunk/util/inteltool/cpu.c  Sun May 30 14:35:39 2010        (r5598)
@@ -33,12 +33,12 @@
        uint32_t ret;
 
 #if defined(__DARWIN__) && !defined(__LP64__)
-        asm volatile (
-                "pushl %%ebx    \n"
-                "cpuid          \n"
-                "popl %%ebx     \n"
-                : "=a" (ret) : "a" (op) : "%ecx", "%edx"
-        );
+       asm volatile (
+               "pushl %%ebx\n"
+               "cpuid\n"
+               "popl %%ebx\n"
+               : "=a" (ret) : "a" (op) : "%ecx", "%edx"
+       );
 #else
        asm ("cpuid" : "=a" (ret) : "a" (op) : "%ebx", "%ecx", "%edx");
 #endif

-- 
coreboot mailing list: [email protected]
http://www.coreboot.org/mailman/listinfo/coreboot

Reply via email to