This is an automated email from Gerrit. Spencer Oliver ([email protected]) just uploaded a new patch set to Gerrit, which you can find at http://openocd.zylin.com/647
-- gerrit commit c2ae6c95afc3689315dc30b07d3a1a97101b0b64 Author: Alexander Osipenko <[email protected]> Date: Thu May 17 09:53:33 2012 +0100 remote_bitbang: missed closing brace in macro REMOTE_BITBANG_RAISE_ERROR Change-Id: I591308bd98810ef6361106c207c55b83c3a83890 Signed-off-by: Spencer Oliver <[email protected]> diff --git a/src/jtag/drivers/remote_bitbang.c b/src/jtag/drivers/remote_bitbang.c index eb98423..941a07f 100644 --- a/src/jtag/drivers/remote_bitbang.c +++ b/src/jtag/drivers/remote_bitbang.c @@ -39,7 +39,7 @@ LOG_ERROR(expr); \ LOG_ERROR("Terminating openocd."); \ exit(-1); \ - while (0) + } while (0) static char remote_bitbang_host[REMOTE_BITBANG_HOST_MAX] = "openocd"; static uint16_t remote_bitbang_port; @@ -246,7 +246,6 @@ static int remote_bitbang_speed_div(int speed, int *khz) return ERROR_OK; } - COMMAND_HANDLER(remote_bitbang_handle_remote_bitbang_port_command) { if (CMD_ARGC == 1) { @@ -266,7 +265,6 @@ COMMAND_HANDLER(remote_bitbang_handle_remote_bitbang_host_command) return ERROR_COMMAND_SYNTAX_ERROR; } - static const struct command_registration remote_bitbang_command_handlers[] = { { .name = "remote_bitbang_port", -- ------------------------------------------------------------------------------ Live Security Virtual Conference Exclusive live event will cover all the ways today's security and threat landscape has changed and how IT managers can respond. Discussions will include endpoint security, mobile security and the latest in malware threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/ _______________________________________________ OpenOCD-devel mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/openocd-devel
