diff options
author | Philippe Mathieu-Daudé <philmd@linaro.org> | 2024-12-06 17:14:19 +0100 |
---|---|---|
committer | Philippe Mathieu-Daudé <philmd@linaro.org> | 2024-12-14 00:16:20 +0100 |
commit | e5fd678a0d2489baa9af0c91408b93474836afcf (patch) | |
tree | d94905fc07a262aaafaa56a13a38b78b290735e5 /hw/arm/virt.c | |
parent | 14f1f86d5111ed2dae19ae15da81a98ea048017d (diff) | |
download | qemu-e5fd678a0d2489baa9af0c91408b93474836afcf.zip qemu-e5fd678a0d2489baa9af0c91408b93474836afcf.tar.gz qemu-e5fd678a0d2489baa9af0c91408b93474836afcf.tar.bz2 |
hw: Use pci_bus_add_fw_cfg_extra_pci_roots()
We want to remove fw_cfg_add_extra_pci_roots() which introduced
PCI bus knowledge within the generic hw/nvram/fw_cfg.c file.
Replace the calls by the pci_bus_add_fw_cfg_extra_pci_roots()
which is a 1:1 equivalent, but using correct API.
Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Reviewed-by: Daniel P. Berrangé <berrange@redhat.com>
Message-Id: <20241206181352.6836-6-philmd@linaro.org>
Diffstat (limited to 'hw/arm/virt.c')
-rw-r--r-- | hw/arm/virt.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/hw/arm/virt.c b/hw/arm/virt.c index 3bd9dd0..333eaf6 100644 --- a/hw/arm/virt.c +++ b/hw/arm/virt.c @@ -1750,7 +1750,8 @@ void virt_machine_done(Notifier *notifier, void *data) exit(1); } - fw_cfg_add_extra_pci_roots(vms->bus, vms->fw_cfg); + pci_bus_add_fw_cfg_extra_pci_roots(vms->fw_cfg, vms->bus, + &error_abort); virt_acpi_setup(vms); virt_build_smbios(vms); |