diff options
author | Paolo Bonzini <pbonzini@redhat.com> | 2015-04-22 12:43:24 +0200 |
---|---|---|
committer | Paolo Bonzini <pbonzini@redhat.com> | 2015-06-05 17:09:58 +0200 |
commit | 086f90e890fb25e7f12fbe72fe5a8078792398aa (patch) | |
tree | 96ec717cc9086847beba0990d082d931a19d5e6e /hw/display | |
parent | dbddac6da01a13c9d5d162994a0a265173acecab (diff) | |
download | qemu-086f90e890fb25e7f12fbe72fe5a8078792398aa.zip |
g364fb: remove pointless call to memory_region_set_coalescing
Coalescing work on MMIO, not RAM, thus this call has no effect.
Reviewed-by: Fam Zheng <famz@redhat.com>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'hw/display')
-rw-r--r-- | hw/display/g364fb.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/hw/display/g364fb.c b/hw/display/g364fb.c index 46f7b41211..6543f2f4a3 100644 --- a/hw/display/g364fb.c +++ b/hw/display/g364fb.c @@ -489,7 +489,6 @@ static void g364fb_init(DeviceState *dev, G364State *s) memory_region_init_ram_ptr(&s->mem_vram, NULL, "vram", s->vram_size, s->vram); vmstate_register_ram(&s->mem_vram, dev); - memory_region_set_coalescing(&s->mem_vram); } #define TYPE_G364 "sysbus-g364" |