On 9/25/20 12:17 PM, Luc Michel wrote: > Signed-off-by: Luc Michel <l...@lmichel.fr> Reviewed-by: Damien Hedde <damien.he...@greensocs.com> > --- > include/hw/clock.h | 5 +++++ > 1 file changed, 5 insertions(+) > > diff --git a/include/hw/clock.h b/include/hw/clock.h > index d357594df9..c93e6113cd 100644 > --- a/include/hw/clock.h > +++ b/include/hw/clock.h > @@ -79,10 +79,15 @@ struct Clock { > extern const VMStateDescription vmstate_clock; > #define VMSTATE_CLOCK(field, state) \ > VMSTATE_CLOCK_V(field, state, 0) > #define VMSTATE_CLOCK_V(field, state, version) \ > VMSTATE_STRUCT_POINTER_V(field, state, version, vmstate_clock, Clock) > +#define VMSTATE_ARRAY_CLOCK(field, state, num) \ > + VMSTATE_ARRAY_CLOCK_V(field, state, num, 0) > +#define VMSTATE_ARRAY_CLOCK_V(field, state, num, version) \ > + VMSTATE_ARRAY_OF_POINTER_TO_STRUCT(field, state, num, version, \ > + vmstate_clock, Clock) > > /** > * clock_setup_canonical_path: > * @clk: clock > * >
- [PATCH 00/14] raspi: add the bcm2835 cprman clock ... Luc Michel
- [PATCH 07/14] hw/misc/bcm2835_cprman: add a P... Luc Michel
- Re: [PATCH 07/14] hw/misc/bcm2835_cprman:... Philippe Mathieu-Daudé
- [PATCH 01/14] hw/core/clock: provide the VMST... Luc Michel
- Re: [PATCH 01/14] hw/core/clock: provide ... Philippe Mathieu-Daudé
- Re: [PATCH 01/14] hw/core/clock: provide ... Damien Hedde
- [PATCH 06/14] hw/misc/bcm2835_cprman: impleme... Luc Michel
- Re: [PATCH 06/14] hw/misc/bcm2835_cprman:... Philippe Mathieu-Daudé
- [PATCH 02/14] hw/core/clock: trace clock valu... Luc Michel
- Re: [PATCH 02/14] hw/core/clock: trace cl... Philippe Mathieu-Daudé
- Re: [PATCH 02/14] hw/core/clock: trac... Damien Hedde
- [PATCH 04/14] hw/arm/raspi: add a skeleton im... Luc Michel
- Re: [PATCH 04/14] hw/arm/raspi: add a ske... Philippe Mathieu-Daudé
- Re: [PATCH 04/14] hw/arm/raspi: add a... Luc Michel
- Re: [PATCH 04/14] hw/arm/raspi: a... Philippe Mathieu-Daudé
- Re: [PATCH 04/14] hw/arm/ras... Luc Michel