diff mbox series

[PULL,1/6] arm/smmuv3: Fix missing VMSD terminator

Message ID 20180730141748.430-2-peter.maydell@linaro.org
State Accepted
Commit 758b71f7a3855cc8a3e3ae120b70294fa1502835
Headers show
Series target-arm queue | expand

Commit Message

Peter Maydell July 30, 2018, 2:17 p.m. UTC
From: "Dr. David Alan Gilbert" <dgilbert@redhat.com>


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 | 1 +
 1 file changed, 1 insertion(+)

-- 
2.17.1
diff mbox series

Patch

diff --git a/hw/arm/smmuv3.c b/hw/arm/smmuv3.c
index 39fbcbf577c..bb6a24e9b84 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(),
     },
 };