Re: [PATCH 10/11] qom: Add object_property_set_default_list()

2023-09-11 Thread Peter Maydell
On Fri, 8 Sept 2023 at 15:37, Kevin Wolf wrote: > > This function provides a default for properties that are accessed using > the list visitor interface. The default is always an empty list. > > Signed-off-by: Kevin Wolf Reviewed-by: Peter Maydell thanks -- PMM

[PATCH 10/11] qom: Add object_property_set_default_list()

2023-09-08 Thread Kevin Wolf
This function provides a default for properties that are accessed using the list visitor interface. The default is always an empty list. Signed-off-by: Kevin Wolf --- include/qom/object.h | 8 qom/object.c | 6 ++ 2 files changed, 14 insertions(+) diff --git a/include/qom/o