Re: [PATCH 3/5] hw/ppc/ppc4xx: Set QDev properties using QDev API

2023-02-05 Thread Daniel Henrique Barboza
On 2/3/23 18:16, Philippe Mathieu-Daudé wrote: No need to use the low-level QOM API when an object inherits from QDev. Directly use the QDev API to set its properties. All calls use either errp=&error_abort or &error_fatal, so converting to the QDev API is almost a no-op (QDev API always uses

Re: [PATCH 3/5] hw/ppc/ppc4xx: Set QDev properties using QDev API

2023-02-03 Thread BALATON Zoltan
On Fri, 3 Feb 2023, Philippe Mathieu-Daudé wrote: No need to use the low-level QOM API when an object inherits from QDev. Directly use the QDev API to set its properties. All calls use either errp=&error_abort or &error_fatal, so converting to the QDev API is almost a no-op (QDev API always uses

[PATCH 3/5] hw/ppc/ppc4xx: Set QDev properties using QDev API

2023-02-03 Thread Philippe Mathieu-Daudé
No need to use the low-level QOM API when an object inherits from QDev. Directly use the QDev API to set its properties. All calls use either errp=&error_abort or &error_fatal, so converting to the QDev API is almost a no-op (QDev API always uses &error_abort). Signed-off-by: Philippe Mathieu-Dau