summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexander Graf <agraf@suse.de>2012-01-03 22:00:23 +0100
committerAlexander Graf <agraf@suse.de>2012-01-21 05:17:00 +0100
commite5ba83c53add51796e8ea787d2b7cb1f9c3cb72d (patch)
treef5f3de862be5a3bb1dd13d3aa61d71d84cb62b36
parentc148b2b47a602024f22234f7b4ec6beedca871d2 (diff)
downloadqemu-e5ba83c53add51796e8ea787d2b7cb1f9c3cb72d.tar.gz
PPC: 440: Default to 440EP CPU
Today we're exposing a Virtex 440 CPU to the guest despite the fact that we're telling the guest that we're running on a 440EP one in the device tree. So let's better default to a real 440EP to make things synced again. Signed-off-by: Alexander Graf <agraf@suse.de>
-rw-r--r--hw/ppc440.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/ppc440.c b/hw/ppc440.c
index f7779bfcb9..8920abba8f 100644
--- a/hw/ppc440.c
+++ b/hw/ppc440.c
@@ -48,7 +48,7 @@ CPUState *ppc440ep_init(MemoryRegion *address_space_mem, ram_addr_t *ram_size,
qemu_irq *pci_irqs;
if (cpu_model == NULL) {
- cpu_model = "440-Xilinx"; // XXX: should be 440EP
+ cpu_model = "440EP";
}
env = cpu_init(cpu_model);
if (!env) {