From: balrog Date: Mon, 15 Dec 2008 01:35:39 +0000 (+0000) Subject: Fix the PXA2xx LCD dirty page detection a little more. X-Git-Tag: v2.7.1~14188 X-Git-Url: https://git.proxmox.com/?a=commitdiff_plain;h=de956597d6308782fd0e2de0e9560e2b986c07a9;p=mirror_qemu.git Fix the PXA2xx LCD dirty page detection a little more. git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@6037 c046a42c-6fe2-441c-8c8c-71466251a162 --- diff --git a/hw/pxa2xx_lcd.c b/hw/pxa2xx_lcd.c index 1640781eec..ffe7a56ad3 100644 --- a/hw/pxa2xx_lcd.c +++ b/hw/pxa2xx_lcd.c @@ -696,7 +696,7 @@ static void pxa2xx_lcdc_dma0_redraw_horiz(struct pxa2xx_lcdc_s *s, addr = (ram_addr_t) (fb - phys_ram_base); start = addr + s->yres * src_width; end = addr; - dirty[0] = dirty[1] = cpu_physical_memory_get_dirty(start, VGA_DIRTY_FLAG); + dirty[0] = dirty[1] = cpu_physical_memory_get_dirty(addr, VGA_DIRTY_FLAG); for (y = 0; y < s->yres; y ++) { new_addr = addr + src_width; for (x = addr + TARGET_PAGE_SIZE; x < new_addr;