mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-04 08:13:54 -06:00
Fix/remove bogus ram size checks.
Signed-off-by: Paul Brook <paul@codesourcery.com> git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@7087 c046a42c-6fe2-441c-8c8c-71466251a162
This commit is contained in:
parent
520860ef61
commit
b0457b6920
2 changed files with 2 additions and 9 deletions
|
@ -302,7 +302,7 @@ static void pxa2xx_descriptor_load(struct pxa2xx_lcdc_s *s)
|
|||
descptr = s->dma_ch[i].descriptor;
|
||||
|
||||
if (!(descptr >= PXA2XX_SDRAM_BASE && descptr +
|
||||
sizeof(desc) <= PXA2XX_SDRAM_BASE + phys_ram_size))
|
||||
sizeof(desc) <= PXA2XX_SDRAM_BASE + ram_size))
|
||||
continue;
|
||||
|
||||
cpu_physical_memory_read(descptr, (void *)&desc, sizeof(desc));
|
||||
|
@ -764,7 +764,7 @@ static void pxa2xx_update_display(void *opaque)
|
|||
}
|
||||
fbptr = s->dma_ch[ch].source;
|
||||
if (!(fbptr >= PXA2XX_SDRAM_BASE &&
|
||||
fbptr <= PXA2XX_SDRAM_BASE + phys_ram_size)) {
|
||||
fbptr <= PXA2XX_SDRAM_BASE + ram_size)) {
|
||||
pxa2xx_dma_ber_set(s, ch);
|
||||
continue;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue