diff options
author | oharboe <oharboe@b42882b7-edfa-0310-969c-e2dbd0fdcd60> | 2009-05-07 22:45:17 +0000 |
---|---|---|
committer | oharboe <oharboe@b42882b7-edfa-0310-969c-e2dbd0fdcd60> | 2009-05-07 22:45:17 +0000 |
commit | 8f41f7c7d5673a9616d0f1ec94617768f5b73234 (patch) | |
tree | 1cab45ab23eb885ba9fc66ce6a22894879a2ffb1 /src/target | |
parent | e37669c3d0638b0053d202a70e916394cbc384ae (diff) | |
download | openocd_libswd-8f41f7c7d5673a9616d0f1ec94617768f5b73234.tar.gz openocd_libswd-8f41f7c7d5673a9616d0f1ec94617768f5b73234.tar.bz2 openocd_libswd-8f41f7c7d5673a9616d0f1ec94617768f5b73234.tar.xz openocd_libswd-8f41f7c7d5673a9616d0f1ec94617768f5b73234.zip |
fix copy & paste error when retiring in_handler
git-svn-id: svn://svn.berlios.de/openocd/trunk@1653 b42882b7-edfa-0310-969c-e2dbd0fdcd60
Diffstat (limited to 'src/target')
-rw-r--r-- | src/target/arm_adi_v5.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/target/arm_adi_v5.c b/src/target/arm_adi_v5.c index 5dc84973..5ce96779 100644 --- a/src/target/arm_adi_v5.c +++ b/src/target/arm_adi_v5.c @@ -130,7 +130,7 @@ int adi_jtag_dp_scan_u32(arm_jtag_t *jtag_info, u8 instr, u8 reg_addr, u8 RnW, u fields[1].in_value = tmp; jtag_add_dr_scan_now(2, fields, TAP_INVALID); - *invalue=flip_u32(le_to_h_u32(tmp), 32); + *invalue=le_to_h_u32(in_buf); } else { |