From: Avi Kivity Date: Sun, 2 Oct 2011 14:43:01 +0000 (+0200) Subject: ppcr500_mpc8544ds: convert to memory API X-Git-Tag: qemu-xen-4.3.0-rc1~2142^2~12 X-Git-Url: http://xenbits.xensource.com/gitweb?a=commitdiff_plain;h=2646c133b53659af37b88cf5faf801a3c0268971;p=qemu-upstream-4.5-testing.git ppcr500_mpc8544ds: convert to memory API Signed-off-by: Avi Kivity --- diff --git a/hw/ppce500_mpc8544ds.c b/hw/ppce500_mpc8544ds.c index 5bf8eab89..51b6abddd 100644 --- a/hw/ppce500_mpc8544ds.c +++ b/hw/ppce500_mpc8544ds.c @@ -229,6 +229,7 @@ static void mpc8544ds_init(ram_addr_t ram_size, const char *cpu_model) { MemoryRegion *address_space_mem = get_system_memory(); + MemoryRegion *ram = g_new(MemoryRegion, 1); PCIBus *pci_bus; CPUState *env = NULL; uint64_t elf_entry; @@ -291,8 +292,8 @@ static void mpc8544ds_init(ram_addr_t ram_size, ram_size &= ~(RAM_SIZES_ALIGN - 1); /* Register Memory */ - cpu_register_physical_memory(0, ram_size, qemu_ram_alloc(NULL, - "mpc8544ds.ram", ram_size)); + memory_region_init_ram(ram, NULL, "mpc8544ds.ram", ram_size); + memory_region_add_subregion(address_space_mem, 0, ram); /* MPIC */ mpic = mpic_init(address_space_mem, MPC8544_MPIC_REGS_BASE,