diff options
author | Gerd Hoffmann | 2020-10-16 13:38:33 +0200 |
---|---|---|
committer | Gerd Hoffmann | 2020-10-21 11:36:05 +0200 |
commit | a6518755a63e38499ab1066376bcfbd18541c602 (patch) | |
tree | 4dbc2118e5533a80a55f43f4a3177dc6a544f1a0 /hw/i386/acpi-common.h | |
parent | microvm: set pci_irq_mask (diff) | |
download | qemu-a6518755a63e38499ab1066376bcfbd18541c602.tar.gz qemu-a6518755a63e38499ab1066376bcfbd18541c602.tar.xz qemu-a6518755a63e38499ab1066376bcfbd18541c602.zip |
apci: drop has_pci arg for acpi_build_madt
Setting x86ms->pci_irq_mask to zero has the same effect,
so we don't need the has_pci argument any more.
Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
Message-id: 20201016113835.17465-6-kraxel@redhat.com
Diffstat (limited to 'hw/i386/acpi-common.h')
-rw-r--r-- | hw/i386/acpi-common.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/hw/i386/acpi-common.h b/hw/i386/acpi-common.h index 9cac18dddf..c30e461f18 100644 --- a/hw/i386/acpi-common.h +++ b/hw/i386/acpi-common.h @@ -9,7 +9,6 @@ #define ACPI_BUILD_IOAPIC_ID 0x0 void acpi_build_madt(GArray *table_data, BIOSLinker *linker, - X86MachineState *x86ms, AcpiDeviceIf *adev, - bool has_pci); + X86MachineState *x86ms, AcpiDeviceIf *adev); #endif |