projects
/
qemu.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
ea0a7eb
)
PPC: Fix heathrow PIC to use little endian MMIO
author
Alexander Graf
<agraf@suse.de>
Tue, 13 Sep 2011 08:41:23 +0000
(10:41 +0200)
committer
Alexander Graf
<agraf@suse.de>
Thu, 6 Oct 2011 07:48:07 +0000
(09:48 +0200)
During the memory API conversion, the indication on little endianness of
MMIO for the heathrow PIC got dropped. This patch adds it back again.
Signed-off-by: Alexander Graf <agraf@suse.de>
hw/heathrow_pic.c
patch
|
blob
|
history
diff --git
a/hw/heathrow_pic.c
b/hw/heathrow_pic.c
index 51996ab793818c9c27e4ab5dd706031da2c89017..16f48d12e10368863a540e5e91c5bcdf5c401b1c 100644
(file)
--- a/
hw/heathrow_pic.c
+++ b/
hw/heathrow_pic.c
@@
-126,7
+126,7
@@
static uint64_t pic_read(void *opaque, target_phys_addr_t addr,
static const MemoryRegionOps heathrow_pic_ops = {
.read = pic_read,
.write = pic_write,
- .endianness = DEVICE_
NATIV
E_ENDIAN,
+ .endianness = DEVICE_
LITTL
E_ENDIAN,
};
static void heathrow_pic_set_irq(void *opaque, int num, int level)