Re: [Qemu-devel] [PATCH v2] hw/arm: Fix Integrator/CM initialization

2016-09-29 Thread Peter Maydell
On 25 September 2016 at 13:35, Jakub Jermář wrote: > > Initialization of a class instance cannot depend on its own properties > as these are not yet set. Move parts of integratorcm_init() that depend > on the "memsz" property to the newly added integratorcm_realize(). > > This fixes: https://bugs

[Qemu-devel] [PATCH v2] hw/arm: Fix Integrator/CM initialization

2016-09-25 Thread Jakub Jermář
Initialization of a class instance cannot depend on its own properties as these are not yet set. Move parts of integratorcm_init() that depend on the "memsz" property to the newly added integratorcm_realize(). This fixes: https://bugs.launchpad.net/qemu/+bug/1624726 Signed-off-by: Jakub Jermar