summaryrefslogtreecommitdiff
path: root/hw/acpi
diff options
context:
space:
mode:
authorPeter Maydell <peter.maydell@linaro.org>2013-11-05 16:38:31 +0000
committerAnthony Liguori <aliguori@amazon.com>2013-11-05 19:57:46 -0800
commitc65e5de94dbe667743d1523d6b4ac301cd76b0fe (patch)
tree99af98454a20e6151199a562bf9df03daf29d938 /hw/acpi
parent6e931878c1bde26ff594f284a6857e0d786674bc (diff)
downloadqemu-c65e5de94dbe667743d1523d6b4ac301cd76b0fe.tar.gz
bswap.h: Remove le16_to_cpupu()
Replace the legacy le16_to_cpupu() with lduw_le_p(). Signed-off-by: Peter Maydell <peter.maydell@linaro.org> Reviewed-by: Richard Henderson <rth@twiddle.net> Reviewed-by: Michael S. Tsirkin <mst@redhat.com> Message-id: 1383669517-25598-4-git-send-email-peter.maydell@linaro.org Signed-off-by: Anthony Liguori <aliguori@amazon.com>
Diffstat (limited to 'hw/acpi')
-rw-r--r--hw/acpi/core.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/hw/acpi/core.c b/hw/acpi/core.c
index 246ade36e0..58308a3406 100644
--- a/hw/acpi/core.c
+++ b/hw/acpi/core.c
@@ -170,8 +170,7 @@ static void acpi_table_install(const char unsigned *blob, size_t bloblen,
}
/* increase number of tables */
- stw_le_p(acpi_tables,
- le16_to_cpupu((uint16_t *)acpi_tables) + 1u);
+ stw_le_p(acpi_tables, lduw_le_p(acpi_tables) + 1u);
/* Update the header fields. The strings need not be NUL-terminated. */
changed_fields = 0;