summaryrefslogtreecommitdiff
path: root/src/jtag/presto.c
diff options
context:
space:
mode:
authorzwelch <zwelch@b42882b7-edfa-0310-969c-e2dbd0fdcd60>2009-06-23 22:50:08 +0000
committerzwelch <zwelch@b42882b7-edfa-0310-969c-e2dbd0fdcd60>2009-06-23 22:50:08 +0000
commitc97caebccd07be7e5bae61d6d40921e01786ba06 (patch)
treeac6b27c4e75a0b30f2676c8ed7ca70a1048be2c4 /src/jtag/presto.c
parent2e779198535580515dfa9c8bfe1f3fe08abdb84b (diff)
downloadopenocd+libswd-c97caebccd07be7e5bae61d6d40921e01786ba06.tar.gz
openocd+libswd-c97caebccd07be7e5bae61d6d40921e01786ba06.tar.bz2
openocd+libswd-c97caebccd07be7e5bae61d6d40921e01786ba06.tar.xz
openocd+libswd-c97caebccd07be7e5bae61d6d40921e01786ba06.zip
Remove whitespace at end of lines, step 2.
- Replace '\s*$' with ''. git-svn-id: svn://svn.berlios.de/openocd/trunk@2380 b42882b7-edfa-0310-969c-e2dbd0fdcd60
Diffstat (limited to 'src/jtag/presto.c')
-rw-r--r--src/jtag/presto.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/jtag/presto.c b/src/jtag/presto.c
index 9aca9097..67b89988 100644
--- a/src/jtag/presto.c
+++ b/src/jtag/presto.c
@@ -150,7 +150,7 @@ static int presto_write(uint8_t *buf, uint32_t size)
if (ftbytes != size)
{
- LOG_ERROR("couldn't write the requested number of bytes to PRESTO (%u < %u)",
+ LOG_ERROR("couldn't write the requested number of bytes to PRESTO (%u < %u)",
(unsigned)ftbytes, (unsigned)size);
return ERROR_JTAG_DEVICE_ERROR;
}
@@ -193,7 +193,7 @@ static int presto_read(uint8_t* buf, uint32_t size)
if (ftbytes != size)
{
/* this is just a warning, there might have been timeout when detecting PRESTO, which is not fatal */
- LOG_WARNING("couldn't read the requested number of bytes from PRESTO (%u < %u)",
+ LOG_WARNING("couldn't read the requested number of bytes from PRESTO (%u < %u)",
(unsigned)ftbytes, (unsigned)size);
return ERROR_JTAG_DEVICE_ERROR;
}