aboutsummaryrefslogtreecommitdiff
path: root/util/inteltool/cpu.c
diff options
context:
space:
mode:
authorStefan Reinauer <stepan@coresystems.de>2010-05-30 12:35:39 +0000
committerStefan Reinauer <stepan@openbios.org>2010-05-30 12:35:39 +0000
commit1c60c88679f692dee5e547e58b4124c8639d4f07 (patch)
tree938a0498b417fc6441e40100e1c56989eb589837 /util/inteltool/cpu.c
parentda0b456ad087daa384d30498132e4e59fa311e14 (diff)
whitespace cleanup inteltool cpu.c
Signed-off-by: Stefan Reinauer <stepan@coresystems.de> Acked-by: Stefan Reinauer <stepan@coresystems.de> git-svn-id: svn://svn.coreboot.org/coreboot/trunk@5598 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'util/inteltool/cpu.c')
-rw-r--r--util/inteltool/cpu.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/util/inteltool/cpu.c b/util/inteltool/cpu.c
index 828f99f84f..ee49d96b0e 100644
--- a/util/inteltool/cpu.c
+++ b/util/inteltool/cpu.c
@@ -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