summaryrefslogtreecommitdiff
path: root/src/target/mips_m4k.c
diff options
context:
space:
mode:
authorDrasko DRASKOVIC <drasko.draskovic@gmail.com>2011-04-04 15:33:04 +0200
committerØyvind Harboe <oyvind.harboe@zylin.com>2011-04-05 08:21:29 +0200
commit719f9ecde32ab60bcb65913454a9340c5754cee4 (patch)
treeadcdaa11d563cc1623d2744adc94c81a1e3f69ea /src/target/mips_m4k.c
parentbc9afcd4d1cb3fb09d7fae40eb355fa4987b9dec (diff)
downloadopenocd+libswd-719f9ecde32ab60bcb65913454a9340c5754cee4.tar.gz
openocd+libswd-719f9ecde32ab60bcb65913454a9340c5754cee4.tar.bz2
openocd+libswd-719f9ecde32ab60bcb65913454a9340c5754cee4.tar.xz
openocd+libswd-719f9ecde32ab60bcb65913454a9340c5754cee4.zip
Added mips_ejtag_drscan_32_out() for optimization.
Diffstat (limited to 'src/target/mips_m4k.c')
-rw-r--r--src/target/mips_m4k.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/target/mips_m4k.c b/src/target/mips_m4k.c
index 74d0d503..1166b874 100644
--- a/src/target/mips_m4k.c
+++ b/src/target/mips_m4k.c
@@ -274,7 +274,7 @@ static int mips_m4k_assert_reset(struct target *target)
uint32_t ejtag_ctrl = ejtag_info->ejtag_ctrl | EJTAG_CTRL_PRRST | EJTAG_CTRL_PERRST;
LOG_DEBUG("Using EJTAG reset (PRRST) to reset processor...");
mips_ejtag_set_instr(ejtag_info, EJTAG_INST_CONTROL);
- mips_ejtag_drscan_32(ejtag_info, &ejtag_ctrl);
+ mips_ejtag_drscan_32_out(ejtag_info, ejtag_ctrl);
}
}