whitespace cleanup inteltool cpu.c
[coreboot.git] / util / inteltool / cpu.c
index 828f99f84fbeab6a624398eac2ef22b72dcc637b..ee49d96b0e927d304b2758fa2154eae15d43ecb6 100644 (file)
@@ -33,12 +33,12 @@ unsigned int cpuid(unsigned int op)
        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