From: Dr. David Alan Gilbert Date: Tue, 11 Jan 2022 10:19:34 +0000 (+0000) Subject: clock-vmstate: Add missing END_OF_LIST X-Git-Tag: qemu-xen-4.17.0-rc4~78^2~17 X-Git-Url: http://xenbits.xensource.com/gitweb?a=commitdiff_plain;h=acbcd06e5d2c181afd87b413e92a92f4594ec084;p=qemu-xen.git 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 Message-Id: <20220111101934.115028-1-dgilbert@redhat.com> Reviewed-by: Peter Maydell Reviewed-by: Philippe Mathieu-Daudé Reviewed-by: Alex Bennée Reviewed-by: Luc Michel Cc: qemu-stable@nongnu.org Signed-off-by: Dr. David Alan Gilbert --- diff --git a/hw/core/clock-vmstate.c b/hw/core/clock-vmstate.c index 9d9174ffbd..7eccb6d4ea 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() }, };