[coreboot-gerrit] New patch to review for coreboot: util/msrtool: Use tabs for indents

HAOUAS Elyes (ehaouas@noos.fr) gerrit at coreboot.org
Sat Oct 15 10:06:25 CEST 2016


HAOUAS Elyes (ehaouas at noos.fr) just uploaded a new patch set to gerrit, which you can find at https://review.coreboot.org/17031

-gerrit

commit 49cf001d2a070888b371c86a849fc5d3d02e55f0
Author: Elyes HAOUAS <ehaouas at noos.fr>
Date:   Sat Oct 15 10:01:21 2016 +0200

    util/msrtool: Use tabs for indents
    
    Change-Id: Ib1aa4ad04dc8a584a751677aac5652cfa2e457df
    Signed-off-by: Elyes HAOUAS <ehaouas at noos.fr>
---
 util/msrtool/sys.c | 24 ++++++++++++------------
 1 file changed, 12 insertions(+), 12 deletions(-)

diff --git a/util/msrtool/sys.c b/util/msrtool/sys.c
index cb300d9..3e50f49 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



More information about the coreboot-gerrit mailing list