diff mbox series

[01/14] hw/core/clock: provide the VMSTATE_ARRAY_CLOCK macro

Message ID 20200925101731.2159827-2-luc@lmichel.fr
State New
Headers show
Series raspi: add the bcm2835 cprman clock manager | expand

Commit Message

Luc Michel Sept. 25, 2020, 10:17 a.m. UTC
Signed-off-by: Luc Michel <luc@lmichel.fr>
---
 include/hw/clock.h | 5 +++++
 1 file changed, 5 insertions(+)

Comments

Philippe Mathieu-Daudé Sept. 26, 2020, 8:36 p.m. UTC | #1
On 9/25/20 12:17 PM, Luc Michel wrote:
> Signed-off-by: Luc Michel <luc@lmichel.fr>


Reviewed-by: Philippe Mathieu-Daudé <f4bug@amsat.org>


> ---

>  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

>   *

>
Damien Hedde Sept. 28, 2020, 8:38 a.m. UTC | #2
On 9/25/20 12:17 PM, Luc Michel wrote:
> Signed-off-by: Luc Michel <luc@lmichel.fr>


Reviewed-by: Damien Hedde <damien.hedde@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

>   *

>
diff mbox series

Patch

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
  *