From 3baa7e707388306d81beac7cc34634e4d831da6d Mon Sep 17 00:00:00 2001 From: Elyes HAOUAS Date: Sat, 15 Oct 2016 10:01:21 +0200 Subject: util/msrtool: Use tabs for indents Change-Id: Ib1aa4ad04dc8a584a751677aac5652cfa2e457df Signed-off-by: Elyes HAOUAS Reviewed-on: https://review.coreboot.org/17031 Tested-by: build bot (Jenkins) Reviewed-by: Alexander Couzens Reviewed-by: Anton Kochkov Reviewed-by: Paul Menzel --- util/msrtool/sys.c | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) (limited to 'util') diff --git a/util/msrtool/sys.c b/util/msrtool/sys.c index cb300d9b24..3e50f49a26 100644 --- a/util/msrtool/sys.c +++ b/util/msrtool/sys.c @@ -26,12 +26,12 @@ struct cpuid_t *cpuid(void) { /* First, we need determine which vendor we have */ #if defined(__DARWIN__) && !defined(__LP64__) - asm volatile ( - "pushl %%ebx \n" - "cpuid \n" - "popl %%ebx \n" - : "=b" (outebx) : "a" (0) : "%ecx", "%edx" - ); + asm volatile ( + "pushl %%ebx \n" + "cpuid \n" + "popl %%ebx \n" + : "=b" (outebx) : "a" (0) : "%ecx", "%edx" + ); #else asm ("cpuid" : "=b" (outebx) : "a" (0) : "%ecx", "%edx"); #endif @@ -40,12 +40,12 @@ struct cpuid_t *cpuid(void) { /* Then, identificate CPU itself */ #if defined(__DARWIN__) && !defined(__LP64__) - asm volatile ( - "pushl %%ebx \n" - "cpuid \n" - "popl %%ebx \n" - : "=a" (outeax) : "a" (1) : "%ecx", "%edx" - ); + asm volatile ( + "pushl %%ebx \n" + "cpuid \n" + "popl %%ebx \n" + : "=a" (outeax) : "a" (1) : "%ecx", "%edx" + ); #else asm ("cpuid" : "=a" (outeax) : "a" (1) : "%ebx", "%ecx", "%edx"); #endif -- cgit v1.2.3