From 71579cae30b53c910cd6c47ab4e683f647d36519 Mon Sep 17 00:00:00 2001 From: Jan Kiszka Date: Thu, 15 Sep 2011 11:26:56 +0200 Subject: [PATCH] vga: Respect isa_mem_base when registering chain4 alias This does not yet unbreak PPC (which has its own problems) but potentially other non-x86 systems where isa_mem_base is != 0. Signed-off-by: Jan Kiszka Signed-off-by: Anthony Liguori --- hw/vga.c | 1 + 1 file changed, 1 insertion(+) diff --git a/hw/vga.c b/hw/vga.c index 7be51419ef..f9a6014f4e 100644 --- a/hw/vga.c +++ b/hw/vga.c @@ -181,6 +181,7 @@ static void vga_update_memory_access(VGACommonState *s) size = 0x8000; break; } + base += isa_mem_base; region = g_malloc(sizeof(*region)); memory_region_init_alias(region, "vga.chain4", &s->vram, offset, size); memory_region_add_subregion_overlap(s->legacy_address_space, base,