tests: fix acpi to work on bigendian host

Double endianness convertion make this test failing on POWERPC machine
running in big-endian.

This fixes the test to success on big-endian host.

Signed-off-by: Alexey Kardashevskiy <aik@ozlabs.ru>
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
This commit is contained in:
Alexey Kardashevskiy 2014-01-13 18:33:53 +11:00 committed by Michael S. Tsirkin
parent 4500bc98a6
commit 084137ddbb

View file

@ -61,13 +61,13 @@ typedef struct {
field = readb(addr); \
break; \
case 2: \
field = le16_to_cpu(readw(addr)); \
field = readw(addr); \
break; \
case 4: \
field = le32_to_cpu(readl(addr)); \
field = readl(addr); \
break; \
case 8: \
field = le64_to_cpu(readq(addr)); \
field = readq(addr); \
break; \
default: \
g_assert(false); \