diff options
author | Martin Galvan <martin.galvan@tallertechnologies.com> | 2014-09-12 14:06:48 +0100 |
---|---|---|
committer | Peter Maydell <peter.maydell@linaro.org> | 2014-09-12 14:06:48 +0100 |
commit | 34bf774485a1259fc50515e8d761bd543bb316c8 (patch) | |
tree | 38270704a6de9415347ec52eb1f29307e26ace1e /target-arm | |
parent | 6e3cf5df01bfa192ca162716670cf368ba1338dd (diff) | |
download | qemu-34bf774485a1259fc50515e8d761bd543bb316c8.zip |
target-arm: Fix broken indentation in arm_cpu_reest()
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>
Diffstat (limited to 'target-arm')
-rw-r--r-- | target-arm/cpu.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/target-arm/cpu.c b/target-arm/cpu.c index 29f7162b04..bdd23b42b6 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; |