Skip to content
Snippets Groups Projects
Commit 4e477364 authored by oharboe's avatar oharboe
Browse files

switch to jtag_add_callback() - USB performance fix

git-svn-id: svn://svn.berlios.de/openocd/trunk@1729 b42882b7-edfa-0310-969c-e2dbd0fdcd60
parent 9eb2deee
Branches
No related tags found
No related merge requests found
......@@ -190,12 +190,11 @@ int arm966e_read_cp15(target_t *target, int reg_addr, u32 *value)
jtag_add_dr_scan(3, fields, TAP_INVALID);
u8 tmp[4];
fields[1].in_value = tmp;
fields[1].in_value = (u8 *)value;
jtag_add_dr_scan_now(3, fields, TAP_INVALID);
jtag_add_dr_scan(3, fields, TAP_INVALID);
*value=le_to_h_u32(tmp);
jtag_add_callback(arm_le_to_h_u32, (u8 *)value);
#ifdef _DEBUG_INSTRUCTION_EXECUTION_
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment