diff options
author | Igor Mammedov | 2017-09-20 21:49:34 +0200 |
---|---|---|
committer | Yongbok Kim | 2017-09-21 14:25:37 +0200 |
commit | c4c8146cfd0fc3f95418fbc82a2eded594675022 (patch) | |
tree | f4d6001cee7d57c14c0de49b9fa393fd95db4cc7 /hw/mips/mips_fulong2e.c | |
parent | mips: MIPSCPU model subclasses (diff) | |
download | qemu-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_fulong2e.c')
-rw-r--r-- | hw/mips/mips_fulong2e.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/mips/mips_fulong2e.c b/hw/mips/mips_fulong2e.c index 439a3d7a66..75318680e1 100644 --- a/hw/mips/mips_fulong2e.c +++ b/hw/mips/mips_fulong2e.c @@ -280,7 +280,7 @@ static void mips_fulong2e_init(MachineState *machine) if (cpu_model == NULL) { cpu_model = "Loongson-2E"; } - 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); |