|
From: <oh...@ma...> - 2009-05-08 00:45:22
|
Author: oharboe
Date: 2009-05-08 00:45:17 +0200 (Fri, 08 May 2009)
New Revision: 1653
Modified:
trunk/src/target/arm_adi_v5.c
Log:
fix copy & paste error when retiring in_handler
Modified: trunk/src/target/arm_adi_v5.c
===================================================================
--- trunk/src/target/arm_adi_v5.c 2009-05-07 20:53:32 UTC (rev 1652)
+++ trunk/src/target/arm_adi_v5.c 2009-05-07 22:45:17 UTC (rev 1653)
@@ -130,7 +130,7 @@
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
{
|