aboutsummaryrefslogtreecommitdiff
path: root/src/jtag/usbprog.c
diff options
context:
space:
mode:
authorzwelch <zwelch@b42882b7-edfa-0310-969c-e2dbd0fdcd60>2009-06-23 22:42:54 +0000
committerzwelch <zwelch@b42882b7-edfa-0310-969c-e2dbd0fdcd60>2009-06-23 22:42:54 +0000
commit84df52f9ea78e2d71bde648a16b69d80404c6421 (patch)
tree93c683e2ec71d33978585da29c4bcaa73fd37222 /src/jtag/usbprog.c
parent3813fda44adcea486b7308423a699f63d79273ee (diff)
- Fixes '=' whitespace
- Replace ')\(=\)\(\w\)' with ') \1 \2'. - Replace '\(\w\)\(=\)(' with '\1 \2 ('. - Replace '\(\w\)\(=\)\(\w\)' with '\1 \2 \3'. git-svn-id: svn://svn.berlios.de/openocd/trunk@2372 b42882b7-edfa-0310-969c-e2dbd0fdcd60
Diffstat (limited to 'src/jtag/usbprog.c')
-rw-r--r--src/jtag/usbprog.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/jtag/usbprog.c b/src/jtag/usbprog.c
index ba91b14e..5abdf324 100644
--- a/src/jtag/usbprog.c
+++ b/src/jtag/usbprog.c
@@ -370,7 +370,7 @@ static void usbprog_scan(bool ir_scan, enum scan_type type, uint8_t *buffer, int
static void usbprog_write(int tck, int tms, int tdi)
{
- unsigned char output_value=0x00;
+ unsigned char output_value = 0x00;
if (tms)
output_value |= (1 << TMS_BIT);