From patchwork Tue Jan 3 21:22:19 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: [2/3] PPC: 440: Default to 440EP CPU Date: Tue, 03 Jan 2012 11:22:19 -0000 From: Alexander Graf X-Patchwork-Id: 134081 Message-Id: <1325625740-18926-3-git-send-email-agraf@suse.de> To: "qemu-devel@nongnu.org Developers" Cc: qemu-ppc@nongnu.org, Hollis Blanchard 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 --- hw/ppc440.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/hw/ppc440.c b/hw/ppc440.c index f7779bf..8920abb 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) {