mirror of
https://github.com/linux-msm/openocd.git
synced 2026-02-25 13:15:07 -08:00
wip. fixed gaffe in jtag_add_shift()
git-svn-id: svn://svn.berlios.de/openocd/trunk@409 b42882b7-edfa-0310-969c-e2dbd0fdcd60
This commit is contained in:
@@ -1901,7 +1901,7 @@ int handle_drscan_command(struct command_context_s *cmd_ctx, char *cmd, char **a
|
||||
int MINIDRIVER(interface_jtag_add_shift)(const enum tap_state shift_state, const enum tap_state end_state, int num_bits, u32 value)
|
||||
{
|
||||
u8 out_buf[4];
|
||||
buf_set_u32(out_buf, 0, 32, flip_u32(value, 32));
|
||||
buf_set_u32(out_buf, 0, 32, value);
|
||||
|
||||
/* allocate memory for a new list member */
|
||||
jtag_command_t **last_cmd;
|
||||
|
||||
Reference in New Issue
Block a user