mirror of https://gitee.com/openkylin/qemu.git
target-arm: Use cpu_reset() in cpu_arm_init()
Commit 3c30dd5a68
(target-arm: Move reset
handling to arm_cpu_reset) QOM'ified CPU reset. Complete it by replacing
cpu_state_reset() with cpu_reset().
Signed-off-by: Andreas Färber <afaerber@suse.de>
Acked-by: Peter Maydell <peter.maydell@linaro.org>
This commit is contained in:
parent
8cc9b43f7c
commit
df90dadb45
|
@ -80,7 +80,7 @@ ARMCPU *cpu_arm_init(const char *cpu_model)
|
|||
arm_translate_init();
|
||||
}
|
||||
|
||||
cpu_state_reset(env);
|
||||
cpu_reset(CPU(cpu));
|
||||
if (arm_feature(env, ARM_FEATURE_NEON)) {
|
||||
gdb_register_coprocessor(env, vfp_gdb_get_reg, vfp_gdb_set_reg,
|
||||
51, "arm-neon.xml", 0);
|
||||
|
|
Loading…
Reference in New Issue