diff options
| author | Igor Mammedov | 2017-08-24 18:31:48 +0200 |
|---|---|---|
| committer | Eduardo Habkost | 2017-09-01 16:54:25 +0200 |
| commit | 84efa64c6092232dec06583d2ce104587a70e7fc (patch) | |
| tree | 5b1ef822b632fbf483ea3c7c8a1c2cc391230e65 /hw/ppc/virtex_ml507.c | |
| parent | unicore32: replace uc32_cpu_init() with cpu_generic_init() (diff) | |
| download | qemu-84efa64c6092232dec06583d2ce104587a70e7fc.tar.gz qemu-84efa64c6092232dec06583d2ce104587a70e7fc.tar.xz qemu-84efa64c6092232dec06583d2ce104587a70e7fc.zip | |
ppc: replace cpu_ppc_init() with cpu_generic_init()
it's just a wrapper, drop it and use cpu_generic_init() directly
Signed-off-by: Igor Mammedov <imammedo@redhat.com>
Acked-by: David Gibson <david@gibson.dropbear.id.au>
Reviewed-by: Hervé Poussineau <hpoussin@reactos.org>
Reviewed-by: Eduardo Habkost <ehabkost@redhat.com>
Message-Id: <1503592308-93913-26-git-send-email-imammedo@redhat.com>
Signed-off-by: Eduardo Habkost <ehabkost@redhat.com>
Diffstat (limited to 'hw/ppc/virtex_ml507.c')
| -rw-r--r-- | hw/ppc/virtex_ml507.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/ppc/virtex_ml507.c b/hw/ppc/virtex_ml507.c index fdbcf22a0c..d5fdc16b59 100644 --- a/hw/ppc/virtex_ml507.c +++ b/hw/ppc/virtex_ml507.c @@ -96,7 +96,7 @@ static PowerPCCPU *ppc440_init_xilinx(ram_addr_t *ram_size, CPUPPCState *env; qemu_irq *irqs; - cpu = cpu_ppc_init(cpu_model); + cpu = POWERPC_CPU(cpu_generic_init(TYPE_POWERPC_CPU, cpu_model)); if (cpu == NULL) { fprintf(stderr, "Unable to initialize CPU!\n"); exit(1); |
