Re: [PATCH 1/9] hw/isa/vt82c686: QOM'ify Super I/O creation

2022-08-24 Thread Bernhard Beschow
On Wed, Aug 24, 2022 at 1:36 AM BALATON Zoltan wrote: > On Tue, 23 Aug 2022, Bernhard Beschow wrote: > > On Tue, Aug 23, 2022 at 2:35 AM BALATON Zoltan > wrote: > > > >> On Tue, 23 Aug 2022, Bernhard Beschow wrote: > >>> The object creation now happens in chip-specific init methods which > >>>

Re: [PATCH 1/9] hw/isa/vt82c686: QOM'ify Super I/O creation

2022-08-23 Thread BALATON Zoltan
On Tue, 23 Aug 2022, Bernhard Beschow wrote: On Tue, Aug 23, 2022 at 2:35 AM BALATON Zoltan wrote: On Tue, 23 Aug 2022, Bernhard Beschow wrote: The object creation now happens in chip-specific init methods which allows the realize methods to be consolidated into one method. Shifting the

Re: [PATCH 1/9] hw/isa/vt82c686: QOM'ify Super I/O creation

2022-08-23 Thread Bernhard Beschow
On Tue, Aug 23, 2022 at 2:35 AM BALATON Zoltan wrote: > On Tue, 23 Aug 2022, Bernhard Beschow wrote: > > The object creation now happens in chip-specific init methods which > > allows the realize methods to be consolidated into one method. Shifting > > the logic into the init methods has the

Re: [PATCH 1/9] hw/isa/vt82c686: QOM'ify Super I/O creation

2022-08-22 Thread BALATON Zoltan
On Tue, 23 Aug 2022, Bernhard Beschow wrote: The object creation now happens in chip-specific init methods which allows the realize methods to be consolidated into one method. Shifting the logic into the init methods has the addidional advantage that the parent object's init methods are called

[PATCH 1/9] hw/isa/vt82c686: QOM'ify Super I/O creation

2022-08-22 Thread Bernhard Beschow
The object creation now happens in chip-specific init methods which allows the realize methods to be consolidated into one method. Shifting the logic into the init methods has the addidional advantage that the parent object's init methods are called implicitly. Signed-off-by: Bernhard Beschow