[coreboot] [commit] r5598 - trunk/util/inteltool

repository service svn at coreboot.org
Sun May 30 14:35:40 CEST 2010


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 <stepan at coresystems.de>
Acked-by: Stefan Reinauer <stepan at coresystems.de>

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




More information about the coreboot mailing list