diff options
author | Juan Quintela <quintela@redhat.com> | 2009-10-14 15:33:26 +0200 |
---|---|---|
committer | Anthony Liguori <aliguori@us.ibm.com> | 2009-10-27 12:28:55 -0500 |
commit | b857ca455393ccdea995cc954668dca6d1df4164 (patch) | |
tree | 5eaa493b183563e3b97f76a7d1043397cc31487a /hw/vga-isa.c | |
parent | c63a5886f07dabec640b9035ec67b8b501bcd2a8 (diff) |
vga: port vga-isa to vmstate
Signed-off-by: Juan Quintela <quintela@redhat.com>
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
Diffstat (limited to 'hw/vga-isa.c')
-rw-r--r-- | hw/vga-isa.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/vga-isa.c b/hw/vga-isa.c index 7fa31d374..801121ae5 100644 --- a/hw/vga-isa.c +++ b/hw/vga-isa.c @@ -36,7 +36,7 @@ int isa_vga_init(void) vga_common_init(s, VGA_RAM_SIZE); vga_init(s); - register_savevm("vga", 0, 2, vga_common_save, vga_common_load, s); + vmstate_register(0, &vmstate_vga_common, s); s->ds = graphic_console_init(s->update, s->invalidate, s->screen_dump, s->text_update, s); |