From f75d216a80977da3435f507fa6bae0821a5d9076 Mon Sep 17 00:00:00 2001 From: Dmitry Eremin-Solenikov Date: Thu, 13 Jan 2011 18:37:10 +0300 Subject: [PATCH] mainstone: fix name of the allocated memory for roms Mainstone board has two flash chips (emulated by two ram regions), however currently code tries to allocate them with the same name, which fails. Fix that to make mainstone emulation work again. Signed-off-by: Dmitry Eremin-Solenikov Signed-off-by: Aurelien Jarno --- hw/mainstone.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/hw/mainstone.c b/hw/mainstone.c index efa2959c72..58e3f8670d 100644 --- a/hw/mainstone.c +++ b/hw/mainstone.c @@ -106,7 +106,8 @@ static void mainstone_common_init(ram_addr_t ram_size, } if (!pflash_cfi01_register(mainstone_flash_base[i], - qemu_ram_alloc(NULL, "mainstone.flash", + qemu_ram_alloc(NULL, i ? "mainstone.flash1" : + "mainstone.flash0", MAINSTONE_FLASH), dinfo->bdrv, sector_len, MAINSTONE_FLASH / sector_len, 4, 0, 0, 0, 0, -- 2.11.4.GIT