Commit cce83b7d authored by Marcelo Tosatti's avatar Marcelo Tosatti
Browse files

vga: fix typo in length passed to kvm_log_stop

parent 6164e6d6
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -1618,8 +1618,8 @@ void vga_dirty_log_stop(VGACommonState *s)
	kvm_log_stop(s->map_addr, s->map_end - s->map_addr);

    if (kvm_enabled() && s->lfb_vram_mapped) {
	kvm_log_stop(isa_mem_base + 0xa0000, 0x80000);
	kvm_log_stop(isa_mem_base + 0xa8000, 0x80000);
	kvm_log_stop(isa_mem_base + 0xa0000, 0x8000);
	kvm_log_stop(isa_mem_base + 0xa8000, 0x8000);
    }

#ifdef CONFIG_BOCHS_VBE