aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDr. David Alan Gilbert <dgilbert@redhat.com>2022-01-11 10:19:34 +0000
committerDr. David Alan Gilbert <dgilbert@redhat.com>2022-03-02 18:12:40 +0000
commitacbcd06e5d2c181afd87b413e92a92f4594ec084 (patch)
tree3cb58ec9f56e53a85f1a293476a271c273b6349d
parent64ada298b98a51eb2512607f6e6180cb330c47b1 (diff)
downloadqemu-acbcd06e5d2c181afd87b413e92a92f4594ec084.zip
qemu-acbcd06e5d2c181afd87b413e92a92f4594ec084.tar.gz
qemu-acbcd06e5d2c181afd87b413e92a92f4594ec084.tar.bz2
clock-vmstate: Add missing END_OF_LIST
Add the missing VMSTATE_END_OF_LIST to vmstate_muldiv Fixes: 99abcbc7600 ("clock: Provide builtin multiplier/divider") Signed-off-by: Dr. David Alan Gilbert <dgilbert@redhat.com> Message-Id: <20220111101934.115028-1-dgilbert@redhat.com> Reviewed-by: Peter Maydell <peter.maydell@linaro.org> Reviewed-by: Philippe Mathieu-Daudé <f4bug@amsat.org> Reviewed-by: Alex Bennée <alex.bennee@linaro.org> Reviewed-by: Luc Michel <luc@lmichel.fr> Cc: qemu-stable@nongnu.org Signed-off-by: Dr. David Alan Gilbert <dgilbert@redhat.com>
-rw-r--r--hw/core/clock-vmstate.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/hw/core/clock-vmstate.c b/hw/core/clock-vmstate.c
index 9d9174f..7eccb6d 100644
--- a/hw/core/clock-vmstate.c
+++ b/hw/core/clock-vmstate.c
@@ -44,6 +44,7 @@ const VMStateDescription vmstate_muldiv = {
.fields = (VMStateField[]) {
VMSTATE_UINT32(multiplier, Clock),
VMSTATE_UINT32(divider, Clock),
+ VMSTATE_END_OF_LIST()
},
};