diff options
| author | Bernhard Beschow <shentey@gmail.com> | 2023-06-30 09:37:11 +0200 |
|---|---|---|
| committer | Michael S. Tsirkin <mst@redhat.com> | 2023-07-10 16:29:17 -0400 |
| commit | f00f5e4b00e2cb414927b560cd6a82fad4dfc6e2 (patch) | |
| tree | 2849d50f9247661c17be47be8c1b0df64ab31074 /hw/pci-host/i440fx.c | |
| parent | b90d7bff18c48500df86a35db56fecfb59d85088 (diff) | |
| download | focaccia-qemu-f00f5e4b00e2cb414927b560cd6a82fad4dfc6e2.tar.gz focaccia-qemu-f00f5e4b00e2cb414927b560cd6a82fad4dfc6e2.zip | |
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>
Diffstat (limited to 'hw/pci-host/i440fx.c')
| -rw-r--r-- | hw/pci-host/i440fx.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/hw/pci-host/i440fx.c b/hw/pci-host/i440fx.c index 61e7b97ff4..d95d9229d3 100644 --- a/hw/pci-host/i440fx.c +++ b/hw/pci-host/i440fx.c @@ -259,7 +259,6 @@ PCIBus *i440fx_init(const char *pci_type, b = pci_root_bus_new(dev, NULL, pci_address_space, address_space_io, 0, TYPE_PCI_BUS); s->bus = b; - object_property_add_child(qdev_get_machine(), "i440fx", OBJECT(dev)); sysbus_realize_and_unref(SYS_BUS_DEVICE(dev), &error_fatal); d = pci_create_simple(b, 0, pci_type); |