mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-07 01:33:56 -06:00
hw/pci-host/i440fx: Add "i440fx" child property in board code
The parent-child relation is usually established near a child's qdev_new(). For i440fx this allows for reusing the machine parameter, thus avoiding qdev_get_machine() which relies on a global variable. Suggested-by: Philippe Mathieu-Daudé <philmd@linaro.org> Signed-off-by: Bernhard Beschow <shentey@gmail.com> Message-Id: <20230630073720.21297-9-shentey@gmail.com> Reviewed-by: Michael S. Tsirkin <mst@redhat.com> Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
This commit is contained in:
parent
b90d7bff18
commit
f00f5e4b00
2 changed files with 2 additions and 1 deletions
|
@ -202,6 +202,8 @@ static void pc_init1(MachineState *machine,
|
|||
memory_region_init(pci_memory, NULL, "pci", UINT64_MAX);
|
||||
rom_memory = pci_memory;
|
||||
i440fx_host = qdev_new(host_type);
|
||||
object_property_add_child(OBJECT(machine), "i440fx",
|
||||
OBJECT(i440fx_host));
|
||||
hole64_size = object_property_get_uint(OBJECT(i440fx_host),
|
||||
PCI_HOST_PROP_PCI_HOLE64_SIZE,
|
||||
&error_abort);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue