diff options
author | Igor Mammedov | 2021-09-24 14:27:55 +0200 |
---|---|---|
committer | Michael S. Tsirkin | 2021-10-05 23:30:57 +0200 |
commit | 3548494e49dacd33bbd610876d1ac38f8f8b94bc (patch) | |
tree | cbb2c4ec9f6c16c959b0e30b651423cbc02fe849 /include/hw/acpi/acpi-defs.h | |
parent | acpi: arm: virt: build_dsdt: use acpi_table_begin()/acpi_table_end() instead ... (diff) | |
download | qemu-3548494e49dacd33bbd610876d1ac38f8f8b94bc.tar.gz qemu-3548494e49dacd33bbd610876d1ac38f8f8b94bc.tar.xz qemu-3548494e49dacd33bbd610876d1ac38f8f8b94bc.zip |
acpi: arm: virt: build_iort: use acpi_table_begin()/acpi_table_end() instead of build_header()
it replaces error-prone pointer arithmetic for build_header() API,
with 2 calls to start and finish table creation,
which hides offsets magic from API user.
Signed-off-by: Igor Mammedov <imammedo@redhat.com>
Reviewed-by: Eric Auger <eric.auger@redhat.com>
Tested-by: Eric Auger <eric.auger@redhat.com>
Message-Id: <20210924122802.1455362-29-imammedo@redhat.com>
Reviewed-by: Michael S. Tsirkin <mst@redhat.com>
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
Diffstat (limited to 'include/hw/acpi/acpi-defs.h')
-rw-r--r-- | include/hw/acpi/acpi-defs.h | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/include/hw/acpi/acpi-defs.h b/include/hw/acpi/acpi-defs.h index bcada37601..195f90caf6 100644 --- a/include/hw/acpi/acpi-defs.h +++ b/include/hw/acpi/acpi-defs.h @@ -189,20 +189,6 @@ struct AcpiGenericTimerTable { typedef struct AcpiGenericTimerTable AcpiGenericTimerTable; /* - * Input Output Remapping Table (IORT) - * Conforms to "IO Remapping Table System Software on ARM Platforms", - * Document number: ARM DEN 0049B, October 2015 - */ - -struct AcpiIortTable { - ACPI_TABLE_HEADER_DEF /* ACPI common table header */ - uint32_t node_count; - uint32_t node_offset; - uint32_t reserved; -} QEMU_PACKED; -typedef struct AcpiIortTable AcpiIortTable; - -/* * IORT node types */ |