qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Qemu-devel] [PATCH 01/17] target-i386/cpu.c: coding style fix


From: Eduardo Habkost
Subject: [Qemu-devel] [PATCH 01/17] target-i386/cpu.c: coding style fix
Date: Mon, 12 Nov 2012 19:38:46 -0200

Use spaces instead of tabs on cpu_x86_cpuid().

Signed-off-by: Eduardo Habkost <address@hidden>
---
 target-i386/cpu.c | 22 +++++++++++-----------
 1 file changed, 11 insertions(+), 11 deletions(-)

diff --git a/target-i386/cpu.c b/target-i386/cpu.c
index e1db639..fa8b5bd 100644
--- a/target-i386/cpu.c
+++ b/target-i386/cpu.c
@@ -1773,17 +1773,17 @@ void cpu_x86_cpuid(CPUX86State *env, uint32_t index, 
uint32_t count,
         }
         break;
     case 0x8000000A:
-       if (env->cpuid_ext3_features & CPUID_EXT3_SVM) {
-               *eax = 0x00000001; /* SVM Revision */
-               *ebx = 0x00000010; /* nr of ASIDs */
-               *ecx = 0;
-               *edx = env->cpuid_svm_features; /* optional features */
-       } else {
-               *eax = 0;
-               *ebx = 0;
-               *ecx = 0;
-               *edx = 0;
-       }
+        if (env->cpuid_ext3_features & CPUID_EXT3_SVM) {
+            *eax = 0x00000001; /* SVM Revision */
+            *ebx = 0x00000010; /* nr of ASIDs */
+            *ecx = 0;
+            *edx = env->cpuid_svm_features; /* optional features */
+        } else {
+            *eax = 0;
+            *ebx = 0;
+            *ecx = 0;
+            *edx = 0;
+        }
         break;
     case 0xC0000000:
         *eax = env->cpuid_xlevel2;
-- 
1.7.11.7




reply via email to

[Prev in Thread] Current Thread [Next in Thread]