From: Øyvind Harboe Date: Sun, 25 Oct 2009 17:24:18 +0000 (+0100) Subject: check if mmu is enabled before using mmu code path X-Git-Tag: v0.3.0-rc0~29 X-Git-Url: https://review.openocd.org/gitweb?p=openocd.git;a=commitdiff_plain;h=d785f552ee034aedb26aefc3e47e5c78cdcce065 check if mmu is enabled before using mmu code path --- diff --git a/src/target/arm926ejs.c b/src/target/arm926ejs.c index 9061174797..ef9a494130 100644 --- a/src/target/arm926ejs.c +++ b/src/target/arm926ejs.c @@ -713,7 +713,7 @@ int arm926ejs_write_memory(struct target_s *target, uint32_t address, uint32_t s /* FIX!!!! this should be cleaned up and made much more general. The * plan is to write up and test on arm926ejs specifically and * then generalize and clean up afterwards. */ - if ((count == 1) && ((size==2) || (size==4))) + if (arm926ejs->armv4_5_mmu.mmu_enabled && (count == 1) && ((size==2) || (size==4))) { /* special case the handling of single word writes to bypass MMU * to allow implementation of breakpoints in memory marked read only