[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [PATCH] clock-vmstate: Add missing END_OF_LIST
From: |
Luc Michel |
Subject: |
Re: [PATCH] clock-vmstate: Add missing END_OF_LIST |
Date: |
Wed, 12 Jan 2022 08:48:53 +0100 |
On 10:19 Tue 11 Jan , Dr. David Alan Gilbert (git) wrote:
> From: "Dr. David Alan Gilbert" <dgilbert@redhat.com>
>
> 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>
Reviewed-by: Luc Michel <luc@lmichel.fr>
> ---
> hw/core/clock-vmstate.c | 1 +
> 1 file changed, 1 insertion(+)
>
> 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()
> },
> };
>
> --
> 2.34.1
>
--