summaryrefslogtreecommitdiff
path: root/src/jtag
diff options
context:
space:
mode:
authorzwelch <zwelch@b42882b7-edfa-0310-969c-e2dbd0fdcd60>2009-06-23 22:40:33 +0000
committerzwelch <zwelch@b42882b7-edfa-0310-969c-e2dbd0fdcd60>2009-06-23 22:40:33 +0000
commit6319ea33f7369823043eaefdb72b7463e760be27 (patch)
treed91702e6b2722e9a9cedb0a92bea31491520ed65 /src/jtag
parent4ce93ac479c29210c4b472a16733bed2537c35f9 (diff)
downloadopenocd+libswd-6319ea33f7369823043eaefdb72b7463e760be27.tar.gz
openocd+libswd-6319ea33f7369823043eaefdb72b7463e760be27.tar.bz2
openocd+libswd-6319ea33f7369823043eaefdb72b7463e760be27.tar.xz
openocd+libswd-6319ea33f7369823043eaefdb72b7463e760be27.zip
- Fixes '<=' whitespace
- Replace '\(\w\)\(<=\)\(\w\)' with '\1 \2 \3'. git-svn-id: svn://svn.berlios.de/openocd/trunk@2368 b42882b7-edfa-0310-969c-e2dbd0fdcd60
Diffstat (limited to 'src/jtag')
-rw-r--r--src/jtag/bitq.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/jtag/bitq.c b/src/jtag/bitq.c
index 1af1be54..65dbb656 100644
--- a/src/jtag/bitq.c
+++ b/src/jtag/bitq.c
@@ -175,7 +175,7 @@ void bitq_path_move(pathmove_command_t* cmd)
{
int i;
- for (i = 0; i<=cmd->num_states; i++)
+ for (i = 0; i <= cmd->num_states; i++)
{
if (tap_state_transition(tap_get_state(), false) == cmd->path[i])
bitq_io(0, 0, 0);