mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-04 08:13:54 -06:00
ARM devboards: Set arm_sysctl properties before init, not after
The ARM devboard models (vexpress-a9, realview, versatilepb, etc) were accidentally trying to set one of the arm_sysctl properties after device init. This has now become a fatal error; set the property before device init where it should be done instead. Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
This commit is contained in:
parent
a642153013
commit
7a65c8cc31
3 changed files with 3 additions and 3 deletions
|
@ -217,8 +217,8 @@ static void realview_init(ram_addr_t ram_size,
|
|||
sys_id = is_pb ? 0x01780500 : 0xc1400400;
|
||||
sysctl = qdev_create(NULL, "realview_sysctl");
|
||||
qdev_prop_set_uint32(sysctl, "sys_id", sys_id);
|
||||
qdev_init_nofail(sysctl);
|
||||
qdev_prop_set_uint32(sysctl, "proc_id", proc_id);
|
||||
qdev_init_nofail(sysctl);
|
||||
sysbus_mmio_map(sysbus_from_qdev(sysctl), 0, 0x10000000);
|
||||
|
||||
if (is_mpcore) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue