aboutsummaryrefslogtreecommitdiff
path: root/hw/misc
diff options
context:
space:
mode:
authorDr. David Alan Gilbert <dgilbert@redhat.com>2018-07-27 13:31:12 +0100
committerDavid Gibson <david@gibson.dropbear.id.au>2018-11-08 12:04:40 +1100
commit0c2adc175398c37cc40b0164849aada9ad9c56c4 (patch)
treef4fb3d82eb3842cd04670aeaa8b86017e3a553ac /hw/misc
parent4fc4c6a53d69af50c4421857c749f84f927d09f6 (diff)
downloadqemu-0c2adc175398c37cc40b0164849aada9ad9c56c4.zip
qemu-0c2adc175398c37cc40b0164849aada9ad9c56c4.tar.gz
qemu-0c2adc175398c37cc40b0164849aada9ad9c56c4.tar.bz2
macio/pmu: Fix missing vmsd terminator
Fix missing terminator in VMStateDescription Fixes: d811d61fbc6ca5f2be2185fd7cfa916e7ba613ce Signed-off-by: Dr. David Alan Gilbert <dgilbert@redhat.com> Reviewed-by: Mark Cave-Ayland <mark.cave-ayland@ilande.co.uk> Reviewed-by: Laurent Vivier <lvivier@redhat.com> Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
Diffstat (limited to 'hw/misc')
-rw-r--r--hw/misc/macio/pmu.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/hw/misc/macio/pmu.c b/hw/misc/macio/pmu.c
index d25344f..6e6d96c 100644
--- a/hw/misc/macio/pmu.c
+++ b/hw/misc/macio/pmu.c
@@ -686,6 +686,7 @@ static const VMStateDescription vmstate_pmu_adb = {
VMSTATE_TIMER_PTR(adb_poll_timer, PMUState),
VMSTATE_UINT8(adb_reply_size, PMUState),
VMSTATE_BUFFER(adb_reply, PMUState),
+ VMSTATE_END_OF_LIST()
}
};