mirror of
https://github.com/qemu/qemu.git
synced 2025-08-10 03:59:16 +00:00

We plan to reuse build_x86_acpi_pci_hotplug() implementation for ARM so let's move the code to generic pcihp. Associated static aml_pci_pdsm() helper is also moved along. build_x86_acpi_pci_hotplug is renamed into build_acpi_pci_hotplug(). No code change intended. Also fix the reference to acpi_pci_hotplug.rst documentation Signed-off-by: Eric Auger <eric.auger@redhat.com> Reviewed-by: Gustavo Romero <gustavo.romero@linaro.org> Reviewed-by: Igor Mammedov <imammedo@redhat.com> Reviewed-by: Jonathan Cameron <jonathan.cameron@huawei.com> Message-Id: <20250714080639.2525563-3-eric.auger@redhat.com> Reviewed-by: Michael S. Tsirkin <mst@redhat.com> Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
12 lines
223 B
C
12 lines
223 B
C
|
|
#ifndef HW_I386_ACPI_BUILD_H
|
|
#define HW_I386_ACPI_BUILD_H
|
|
#include "hw/acpi/acpi-defs.h"
|
|
|
|
extern const struct AcpiGenericAddress x86_nvdimm_acpi_dsmio;
|
|
|
|
void acpi_setup(void);
|
|
Object *acpi_get_i386_pci_host(void);
|
|
|
|
#endif
|