diff options
author | Richard Henderson <richard.henderson@linaro.org> | 2018-10-08 14:21:59 -0700 |
---|---|---|
committer | Peter Maydell <peter.maydell@linaro.org> | 2018-10-16 16:16:42 +0100 |
commit | aaab8f3400ea5ec9c6cce3607ff26f9be89321d6 (patch) | |
tree | 271fdf3d944fdf70e628c472fd85a0b98f10be68 /target | |
parent | a62e62af9f26bf655fe95ada796f28a6a16c0561 (diff) | |
download | qemu-aaab8f3400ea5ec9c6cce3607ff26f9be89321d6.zip |
target/arm: Align cortex-r5 id_isar0
The missing nibble made it more difficult to read.
Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com>
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
Message-id: 20181008212205.17752-5-richard.henderson@linaro.org
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Diffstat (limited to 'target')
-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 b5e61cc177..7ea7e4c131 100644 --- a/target/arm/cpu.c +++ b/target/arm/cpu.c @@ -1397,7 +1397,7 @@ static void cortex_r5_initfn(Object *obj) cpu->id_mmfr1 = 0x00000000; cpu->id_mmfr2 = 0x01200000; cpu->id_mmfr3 = 0x0211; - cpu->id_isar0 = 0x2101111; + cpu->id_isar0 = 0x02101111; cpu->id_isar1 = 0x13112111; cpu->id_isar2 = 0x21232141; cpu->id_isar3 = 0x01112131; |