From: Edgar E. Iglesias Date: Sat, 14 Apr 2018 20:15:19 +0000 (+0200) Subject: target-microblaze: Correct the PVR array size X-Git-Tag: v3.0.0-rc0~127^2~32 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=c56911a424c5279a5113c4e1d508733a60c12dbc;p=thirdparty%2Fqemu.git target-microblaze: Correct the PVR array size Correct the PVR array size, there are 13 PVR registers. Reviewed-by: Alistair Francis Signed-off-by: Edgar E. Iglesias --- diff --git a/target/microblaze/cpu.h b/target/microblaze/cpu.h index 994496515f7..2304c24b7de 100644 --- a/target/microblaze/cpu.h +++ b/target/microblaze/cpu.h @@ -277,7 +277,7 @@ struct CPUMBState { /* These fields are preserved on reset. */ struct { - uint32_t regs[16]; + uint32_t regs[13]; } pvr; };