]> git.proxmox.com Git - qemu.git/commitdiff
Revert "ioport: remove LITTLE_ENDIAN mark for portio"
authorPaolo Bonzini <pbonzini@redhat.com>
Mon, 22 Jul 2013 13:54:25 +0000 (15:54 +0200)
committerAnthony Liguori <aliguori@us.ibm.com>
Thu, 25 Jul 2013 13:12:27 +0000 (08:12 -0500)
This reverts commit c3cb8e77804313e1be99b5f28a34a346736707a5.

The scenario where I/O ports are accessed with DEVICE_LITTLE_ENDIAN
endianness now works and will soon be unit tested.  Since the PortioList
indirection assumes little endian, define portio_ops the same way.

Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Reviewed-by: Anthony Liguori <aliguori@us.ibm.com>
Message-id: 1374501278-31549-16-git-send-email-pbonzini@redhat.com
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
ioport.c

index 89b17d69f42ea9b2b89d0127cbe8f9a327ec507c..79b7f1ae3846ba2cb8c74774ed92c4f470b81eaa 100644 (file)
--- a/ioport.c
+++ b/ioport.c
@@ -183,6 +183,7 @@ static void portio_write(void *opaque, hwaddr addr, uint64_t data,
 static const MemoryRegionOps portio_ops = {
     .read = portio_read,
     .write = portio_write,
+    .endianness = DEVICE_LITTLE_ENDIAN,
     .valid.unaligned = true,
     .impl.unaligned = true,
 };