summaryrefslogtreecommitdiffstats
path: root/hw/mips/mips_jazz.c
diff options
context:
space:
mode:
authorIgor Mammedov2017-09-20 21:49:34 +0200
committerYongbok Kim2017-09-21 14:25:37 +0200
commitc4c8146cfd0fc3f95418fbc82a2eded594675022 (patch)
treef4d6001cee7d57c14c0de49b9fa393fd95db4cc7 /hw/mips/mips_jazz.c
parentmips: MIPSCPU model subclasses (diff)
downloadqemu-c4c8146cfd0fc3f95418fbc82a2eded594675022.tar.gz
qemu-c4c8146cfd0fc3f95418fbc82a2eded594675022.tar.xz
qemu-c4c8146cfd0fc3f95418fbc82a2eded594675022.zip
mips: replace cpu_mips_init() with cpu_generic_init()
now cpu_mips_init() reimplements subset of cpu_generic_init() tasks, so just drop it and use cpu_generic_init() directly. Signed-off-by: Igor Mammedov <imammedo@redhat.com> Reviewed-by: Hervé Poussineau <hpoussin@reactos.org> Signed-off-by: Philippe Mathieu-Daudé <f4bug@amsat.org> [PMD: use internal.h instead of cpu.h] Tested-by: James Hogan <james.hogan@imgtec.com> Reviewed-by: Eduardo Habkost <ehabkost@redhat.com> Signed-off-by: Yongbok Kim <yongbok.kim@imgtec.com>
Diffstat (limited to 'hw/mips/mips_jazz.c')
-rw-r--r--hw/mips/mips_jazz.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/mips/mips_jazz.c b/hw/mips/mips_jazz.c
index ae10670efd..7e6626dc88 100644
--- a/hw/mips/mips_jazz.c
+++ b/hw/mips/mips_jazz.c
@@ -151,7 +151,7 @@ static void mips_jazz_init(MachineState *machine,
if (cpu_model == NULL) {
cpu_model = "R4000";
}
- cpu = cpu_mips_init(cpu_model);
+ cpu = MIPS_CPU(cpu_generic_init(TYPE_MIPS_CPU, cpu_model));
env = &cpu->env;
qemu_register_reset(main_cpu_reset, cpu);