This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "Main OpenOCD repository".
The branch, master has been updated
via f97b6b59abc878745bb54e8f44ec82897bacaf7d (commit)
from dd88b461da1cb8642200dd5c96fb1ff384ca9f7b (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit f97b6b59abc878745bb54e8f44ec82897bacaf7d
Author: Spencer Oliver <nt...@us...>
Date: Thu Jul 1 19:43:58 2010 +0100
ft2232: bugfix from previous commit
fix build error with commit dd88b461da1cb8642200dd5c96fb1ff384ca9f7b
Signed-off-by: Spencer Oliver <nt...@us...>
diff --git a/src/jtag/drivers/ft2232.c b/src/jtag/drivers/ft2232.c
index 9d40b1c..90516a0 100644
--- a/src/jtag/drivers/ft2232.c
+++ b/src/jtag/drivers/ft2232.c
@@ -4022,7 +4022,7 @@ static int signalyzer_h_init(void)
buf[1] = high_output;
buf[2] = high_direction;
- if ((retval = ft2232_write(buf, sizeof(buf), &bytes_written)) != ERROR_OK)
+ if (ft2232_write(buf, sizeof(buf), &bytes_written) != ERROR_OK)
{
LOG_ERROR("couldn't initialize Signalyzer-H layout");
return ERROR_JTAG_INIT_FAILED;
-----------------------------------------------------------------------
Summary of changes:
src/jtag/drivers/ft2232.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
hooks/post-receive
--
Main OpenOCD repository
|