diff options
Diffstat (limited to 'hw/acpi')
-rw-r--r-- | hw/acpi/core.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/hw/acpi/core.c b/hw/acpi/core.c index d8dff5b..246ade3 100644 --- a/hw/acpi/core.c +++ b/hw/acpi/core.c @@ -170,8 +170,8 @@ static void acpi_table_install(const char unsigned *blob, size_t bloblen, } /* increase number of tables */ - cpu_to_le16wu((uint16_t *)acpi_tables, - le16_to_cpupu((uint16_t *)acpi_tables) + 1u); + stw_le_p(acpi_tables, + le16_to_cpupu((uint16_t *)acpi_tables) + 1u); /* Update the header fields. The strings need not be NUL-terminated. */ changed_fields = 0; |