]> xenbits.xensource.com Git - qemu-xen.git/commitdiff
arm/smmuv3: Fix missing VMSD terminator
authorDr. David Alan Gilbert <dgilbert@redhat.com>
Fri, 27 Jul 2018 13:54:06 +0000 (14:54 +0100)
committerPeter Maydell <peter.maydell@linaro.org>
Mon, 30 Jul 2018 13:45:54 +0000 (14:45 +0100)
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>
hw/arm/smmuv3.c

index 39fbcbf577c4377215860725b7173ee9321316a0..bb6a24e9b8418d655f6a00e5496c7bc3c1bb74f1 100644 (file)
@@ -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(),
     },
 };