mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-07 09:43:56 -06:00
vmstate: rename run_after_load() -> post_load()
This naming was used in kvm tree, and is easier to remember Signed-off-by: Juan Quintela <quintela@redhat.com> Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
This commit is contained in:
parent
1eb7538b77
commit
752ff2fa31
6 changed files with 12 additions and 11 deletions
4
hw/tcx.c
4
hw/tcx.c
|
@ -378,7 +378,7 @@ static void tcx24_invalidate_display(void *opaque)
|
|||
qemu_console_resize(s->ds, s->width, s->height);
|
||||
}
|
||||
|
||||
static int vmstate_tcx_after_load(void *opaque)
|
||||
static int vmstate_tcx_post_load(void *opaque)
|
||||
{
|
||||
TCXState *s = opaque;
|
||||
|
||||
|
@ -397,7 +397,7 @@ static const VMStateDescription vmstate_tcx = {
|
|||
.version_id = 4,
|
||||
.minimum_version_id = 4,
|
||||
.minimum_version_id_old = 4,
|
||||
.run_after_load = vmstate_tcx_after_load,
|
||||
.post_load = vmstate_tcx_post_load,
|
||||
.fields = (VMStateField []) {
|
||||
VMSTATE_UINT16(height, TCXState),
|
||||
VMSTATE_UINT16(width, TCXState),
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue