X-Git-Url: https://repo.jachan.dev/qemu.git/blobdiff_plain/120fc4eb94dcacf8f451c09fc280b18c8c192f1a..7d9b68acb37059bee347ce7e4c783ca5b7cf7ae0:/hw/acpi/core.c?ds=sidebyside diff --git a/hw/acpi/core.c b/hw/acpi/core.c index 9f22b86fa9..9ed1629f36 100644 --- a/hw/acpi/core.c +++ b/hw/acpi/core.c @@ -307,8 +307,6 @@ out: error_propagate(errp, err); } -static bool acpi_table_builtin = false; - unsigned acpi_table_len(void *current) { struct acpi_table_header *hdr = current - sizeof(hdr->_length); @@ -324,7 +322,7 @@ void *acpi_table_hdr(void *h) uint8_t *acpi_table_first(void) { - if (acpi_table_builtin || !acpi_tables) { + if (!acpi_tables) { return NULL; } return acpi_table_hdr(acpi_tables + ACPI_TABLE_PFX_SIZE);