summaryrefslogtreecommitdiffstats
path: root/hw/arm/smmuv3.c
diff options
context:
space:
mode:
authorDr. David Alan Gilbert2018-07-27 15:54:06 +0200
committerPeter Maydell2018-07-30 15:45:54 +0200
commit758b71f7a3855cc8a3e3ae120b70294fa1502835 (patch)
tree878af2715bebfb5dd986626d62ef831518406465 /hw/arm/smmuv3.c
parentMerge remote-tracking branch 'remotes/armbru/tags/pull-qobject-2018-07-27-v2'... (diff)
downloadqemu-758b71f7a3855cc8a3e3ae120b70294fa1502835.tar.gz
qemu-758b71f7a3855cc8a3e3ae120b70294fa1502835.tar.xz
qemu-758b71f7a3855cc8a3e3ae120b70294fa1502835.zip
arm/smmuv3: Fix missing VMSD terminator
The 'vmstate_smmuv3_queue' is missing the end-of-list marker. Fixes: 10a83cb9887 Signed-off-by: Dr. David Alan Gilbert <dgilbert@redhat.com> Message-id: 20180727135406.15132-1-dgilbert@redhat.com Reviewed-by: Peter Maydell <peter.maydell@linaro.org> [PMM: dropped stray blank line] Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Diffstat (limited to 'hw/arm/smmuv3.c')
-rw-r--r--hw/arm/smmuv3.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/hw/arm/smmuv3.c b/hw/arm/smmuv3.c
index 39fbcbf577..bb6a24e9b8 100644
--- a/hw/arm/smmuv3.c
+++ b/hw/arm/smmuv3.c
@@ -1414,6 +1414,7 @@ static const VMStateDescription vmstate_smmuv3_queue = {
VMSTATE_UINT32(prod, SMMUQueue),
VMSTATE_UINT32(cons, SMMUQueue),
VMSTATE_UINT8(log2size, SMMUQueue),
+ VMSTATE_END_OF_LIST(),
},
};