diff options
author | Øyvind Harboe <oyvind.harboe@zylin.com> | 2011-03-31 18:46:14 +0200 |
---|---|---|
committer | Øyvind Harboe <oyvind.harboe@zylin.com> | 2011-03-31 18:46:14 +0200 |
commit | f169f86bd10c4dfdab6088e233647bb6d42b5c26 (patch) | |
tree | 08f85c124db4cb60ca9f87b687d777e92be1a286 /src/target/xscale.c | |
parent | 8d338f3296d87f3b0aa40b6f60a0ca393e435b36 (diff) | |
download | riscv-openocd-f169f86bd10c4dfdab6088e233647bb6d42b5c26.zip riscv-openocd-f169f86bd10c4dfdab6088e233647bb6d42b5c26.tar.gz riscv-openocd-f169f86bd10c4dfdab6088e233647bb6d42b5c26.tar.bz2 |
xscale: fix gaffe in phys write
it would *read* instead of *write* to memory
when the MMU was disabled.
Signed-off-by: Øyvind Harboe <oyvind.harboe@zylin.com>
Diffstat (limited to 'src/target/xscale.c')
-rw-r--r-- | src/target/xscale.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/target/xscale.c b/src/target/xscale.c index 9511be0..d1e33b7 100644 --- a/src/target/xscale.c +++ b/src/target/xscale.c @@ -2022,7 +2022,7 @@ static int xscale_write_phys_memory(struct target *target, uint32_t address, /* with MMU inactive, there are only physical addresses */ if (!xscale->armv4_5_mmu.mmu_enabled) - return xscale_read_memory(target, address, size, count, buffer); + return xscale_write_memory(target, address, size, count, buffer); /** \todo: provide a non-stub implementation of this routine. */ LOG_ERROR("%s: %s is not implemented. Disable MMU?", |