Comments
Patch
@@ -235,7 +235,7 @@ static int vmstate_acpi_post_load(void *opaque, int version_id)
{ \
.name = (stringify(_field)), \
.version_id = 0, \
- .num = GPE_LEN, \
+ .num = 1, \
.info = &vmstate_info_uint16, \
.size = sizeof(uint16_t), \
.flags = VMS_ARRAY | VMS_POINTER, \
@@ -249,7 +249,9 @@ static const VMStateDescription vmstate_gpe = {
.minimum_version_id_old = 1,
.fields = (VMStateField []) {
VMSTATE_GPE_ARRAY(sts, ACPIGPE),
+ VMSTATE_UNUSED(6),
VMSTATE_GPE_ARRAY(en, ACPIGPE),
+ VMSTATE_UNUSED(6),
VMSTATE_END_OF_LIST()
}
};
Signed-off-by: Gerd Hoffmann <kraxel@redhat.com> --- hw/acpi_piix4.c | 4 +++- 1 files changed, 3 insertions(+), 1 deletions(-)