diff options
author | Paolo Bonzini <pbonzini@redhat.com> | 2018-02-06 18:24:13 +0100 |
---|---|---|
committer | Paolo Bonzini <pbonzini@redhat.com> | 2018-02-13 16:15:09 +0100 |
commit | 0fe1eca7dcef4b0432c858d0eea32a84f014ddc5 (patch) | |
tree | 3916ed964cbd288ae2ee550a09286f885fd44ad2 /hw/display/g364fb.c | |
parent | 77302fb5df05ffca9f41b5b54e3b67c601719d57 (diff) | |
download | qemu-0fe1eca7dcef4b0432c858d0eea32a84f014ddc5.zip qemu-0fe1eca7dcef4b0432c858d0eea32a84f014ddc5.tar.gz qemu-0fe1eca7dcef4b0432c858d0eea32a84f014ddc5.tar.bz2 |
memory: hide memory_region_sync_dirty_bitmap behind DirtyBitmapSnapshot
Simplify the users of memory_region_snapshot_and_clear_dirty, so
that they do not have to call memory_region_sync_dirty_bitmap
explicitly.
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'hw/display/g364fb.c')
-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 86452de..819f8be 100644 --- a/hw/display/g364fb.c +++ b/hw/display/g364fb.c @@ -246,7 +246,6 @@ static void g364fb_update_display(void *opaque) qemu_console_resize(s->con, s->width, s->height); } - memory_region_sync_dirty_bitmap(&s->mem_vram); if (s->ctla & CTLA_FORCE_BLANK) { g364fb_draw_blank(s); } else if (s->depth == 8) { |