diff mbox

[PULL,05/23] target-arm: Fix broken indentation in arm_cpu_reest()

Message ID 1410528234-13545-6-git-send-email-peter.maydell@linaro.org
State Accepted
Commit 34bf774485a1259fc50515e8d761bd543bb316c8
Headers show

Commit Message

Peter Maydell Sept. 12, 2014, 1:23 p.m. UTC
From: Martin Galvan <martin.galvan@tallertechnologies.com>

Fix a single misindented line in arm_cpu_reset().

Signed-off-by: Martin Galvan <martin.galvan@tallertechnologies.com>
[PMM: split this out from the previous commit]
Reviewed-by: Peter Maydell <peter.maydell@linaro.org>
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
---
 target-arm/cpu.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
diff mbox

Patch

diff --git a/target-arm/cpu.c b/target-arm/cpu.c
index 29f7162..bdd23b4 100644
--- a/target-arm/cpu.c
+++ b/target-arm/cpu.c
@@ -160,7 +160,7 @@  static void arm_cpu_reset(CPUState *s)
     }
 
     if (env->cp15.c1_sys & SCTLR_V) {
-            env->regs[15] = 0xFFFF0000;
+        env->regs[15] = 0xFFFF0000;
     }
 
     env->vfp.xregs[ARM_VFP_FPEXC] = 0;