diff options
author | Peter Maydell <peter.maydell@linaro.org> | 2012-07-12 10:58:36 +0000 |
---|---|---|
committer | Peter Maydell <peter.maydell@linaro.org> | 2012-07-12 10:58:36 +0000 |
commit | 81a60ada7e85c334c9516cad89d25a7dd889f399 (patch) | |
tree | 611d1071cd8e69312cf1a825273b2232f4d20e65 /target-arm | |
parent | 2bee5105481637f9603bc71ef7cbb81e8da9cd68 (diff) | |
download | qemu-81a60ada7e85c334c9516cad89d25a7dd889f399.tar.gz qemu-81a60ada7e85c334c9516cad89d25a7dd889f399.tar.bz2 qemu-81a60ada7e85c334c9516cad89d25a7dd889f399.zip |
target-arm: Fix typo that meant TTBR1 accesses went to TTBR0
Fix a copy-and-paste error in the register description for TTBR1
that meant it was a duplicate of TTBR0 rather than affecting the
correct bit of CPU state.
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Diffstat (limited to 'target-arm')
-rw-r--r-- | target-arm/helper.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/target-arm/helper.c b/target-arm/helper.c index 23099236ad..ca5d8e9e28 100644 --- a/target-arm/helper.c +++ b/target-arm/helper.c @@ -679,7 +679,7 @@ static const ARMCPRegInfo vmsa_cp_reginfo[] = { .fieldoffset = offsetof(CPUARMState, cp15.c2_base0), .resetvalue = 0, }, { .name = "TTBR1", .cp = 15, .crn = 2, .crm = 0, .opc1 = 0, .opc2 = 1, .access = PL1_RW, - .fieldoffset = offsetof(CPUARMState, cp15.c2_base0), .resetvalue = 0, }, + .fieldoffset = offsetof(CPUARMState, cp15.c2_base1), .resetvalue = 0, }, { .name = "TTBCR", .cp = 15, .crn = 2, .crm = 0, .opc1 = 0, .opc2 = 2, .access = PL1_RW, .writefn = vmsa_ttbcr_write, .resetfn = vmsa_ttbcr_reset, |