From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:39106) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VHy36-0006Pt-PV for qemu-devel@nongnu.org; Fri, 06 Sep 2013 11:34:22 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1VHy31-0003hk-GH for qemu-devel@nongnu.org; Fri, 06 Sep 2013 11:34:16 -0400 From: Stefan Hajnoczi Date: Fri, 6 Sep 2013 17:33:44 +0200 Message-Id: <1378481624-20964-6-git-send-email-stefanha@redhat.com> In-Reply-To: <1378481624-20964-1-git-send-email-stefanha@redhat.com> References: <1378481624-20964-1-git-send-email-stefanha@redhat.com> Subject: [Qemu-devel] [PULL v2 5/5] ne2000: mark I/O as LITTLE_ENDIAN List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: Stefan Hajnoczi , Aurelien Jarno , Anthony Liguori , qemu-stable@nongnu.org From: Aurelien Jarno Now that the memory subsystem is propagating the endianness correctly, the ne2000 device should have its I/O ports marked as LITTLE_ENDIAN, as PCI devices are little endian. This makes the ne2000 NIC to work again on PowerPC. Cc: qemu-stable@nongnu.org Cc: Stefan Hajnoczi Signed-off-by: Aurelien Jarno Signed-off-by: Stefan Hajnoczi --- hw/net/ne2000.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hw/net/ne2000.c b/hw/net/ne2000.c index 31afd28..c961258 100644 --- a/hw/net/ne2000.c +++ b/hw/net/ne2000.c @@ -693,7 +693,7 @@ static void ne2000_write(void *opaque, hwaddr addr, static const MemoryRegionOps ne2000_ops = { .read = ne2000_read, .write = ne2000_write, - .endianness = DEVICE_NATIVE_ENDIAN, + .endianness = DEVICE_LITTLE_ENDIAN, }; /***********************************************************/ -- 1.8.3.1