summaryrefslogtreecommitdiffstats
path: root/hw
diff options
context:
space:
mode:
authorbalrog <balrog@c046a42c-6fe2-441c-8c8c-71466251a162>2008-12-07 16:08:49 +0000
committerbalrog <balrog@c046a42c-6fe2-441c-8c8c-71466251a162>2008-12-07 16:08:49 +0000
commitdc23e2605d998d5d0739a23be06083511e612a10 (patch)
tree85664d07e498834485be44ea74239316e44bfeb5 /hw
parentdcb8c51272fe0cdfeac953eb7b403f548a5265d4 (diff)
downloadhqemu-dc23e2605d998d5d0739a23be06083511e612a10.zip
hqemu-dc23e2605d998d5d0739a23be06083511e612a10.tar.gz
PXA: Account for offset from page start in a subpage mapping.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@5917 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'hw')
-rw-r--r--hw/pxa2xx.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/pxa2xx.c b/hw/pxa2xx.c
index 660ff4a..b780bad 100644
--- a/hw/pxa2xx.c
+++ b/hw/pxa2xx.c
@@ -1487,7 +1487,7 @@ struct pxa2xx_i2c_s *pxa2xx_i2c_init(target_phys_addr_t base,
s->slave.recv = pxa2xx_i2c_rx;
s->slave.send = pxa2xx_i2c_tx;
s->bus = i2c_init_bus();
- s->offset = base & region_size;
+ s->offset = base - (base & (~region_size) & TARGET_PAGE_MASK);
iomemtype = cpu_register_io_memory(0, pxa2xx_i2c_readfn,
pxa2xx_i2c_writefn, s);
OpenPOWER on IntegriCloud