mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-07 17:53:56 -06:00
hw/acpi/viot: rename build_pci_range_node() to enumerate_pci_host_bridges()
This is in preparation for separating out the VIOT ACPI table build from the PCI host bridge numeration. Signed-off-by: Mark Cave-Ayland <mark.cave-ayland@ilande.co.uk> Reviewed-by: Ani Sinha <ani@anisinha.ca> Reviewed-by: Philippe Mathieu-Daudé <f4bug@amsat.org> Message-Id: <20220525173232.31429-2-mark.cave-ayland@ilande.co.uk> Reviewed-by: Jean-Philippe Brucker <jean-philippe@linaro.org> Reviewed-by: Michael S. Tsirkin <mst@redhat.com> Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
This commit is contained in:
parent
f824f52947
commit
6164a11104
1 changed files with 2 additions and 2 deletions
|
@ -17,7 +17,7 @@ struct viot_pci_ranges {
|
||||||
};
|
};
|
||||||
|
|
||||||
/* Build PCI range for a given PCI host bridge */
|
/* Build PCI range for a given PCI host bridge */
|
||||||
static int build_pci_range_node(Object *obj, void *opaque)
|
static int enumerate_pci_host_bridges(Object *obj, void *opaque)
|
||||||
{
|
{
|
||||||
struct viot_pci_ranges *pci_ranges = opaque;
|
struct viot_pci_ranges *pci_ranges = opaque;
|
||||||
GArray *blob = pci_ranges->blob;
|
GArray *blob = pci_ranges->blob;
|
||||||
|
@ -78,7 +78,7 @@ void build_viot(MachineState *ms, GArray *table_data, BIOSLinker *linker,
|
||||||
};
|
};
|
||||||
|
|
||||||
/* Build the list of PCI ranges that this viommu manages */
|
/* Build the list of PCI ranges that this viommu manages */
|
||||||
object_child_foreach_recursive(OBJECT(ms), build_pci_range_node,
|
object_child_foreach_recursive(OBJECT(ms), enumerate_pci_host_bridges,
|
||||||
&pci_ranges);
|
&pci_ranges);
|
||||||
|
|
||||||
/* ACPI table header */
|
/* ACPI table header */
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue