Simplify logic in handle_jtag_speed_command.
git-svn-id: svn://svn.berlios.de/openocd/trunk@2109 b42882b7-edfa-0310-969c-e2dbd0fdcd60
This commit is contained in:
parent
e468797e41
commit
620ecedf42
|
@ -2144,8 +2144,10 @@ static int handle_jtag_ntrst_delay_command(struct command_context_s *cmd_ctx, ch
|
||||||
|
|
||||||
static int handle_jtag_speed_command(struct command_context_s *cmd_ctx, char *cmd, char **args, int argc)
|
static int handle_jtag_speed_command(struct command_context_s *cmd_ctx, char *cmd, char **args, int argc)
|
||||||
{
|
{
|
||||||
int retval=ERROR_OK;
|
int retval = ERROR_OK;
|
||||||
|
|
||||||
|
if (argc > 1)
|
||||||
|
return ERROR_COMMAND_SYNTAX_ERROR;
|
||||||
if (argc == 1)
|
if (argc == 1)
|
||||||
{
|
{
|
||||||
LOG_DEBUG("handle jtag speed");
|
LOG_DEBUG("handle jtag speed");
|
||||||
|
@ -2156,14 +2158,7 @@ static int handle_jtag_speed_command(struct command_context_s *cmd_ctx, char *cm
|
||||||
/* this command can be called during CONFIG,
|
/* this command can be called during CONFIG,
|
||||||
* in which case jtag isn't initialized */
|
* in which case jtag isn't initialized */
|
||||||
if (jtag)
|
if (jtag)
|
||||||
{
|
retval = jtag->speed(cur_speed);
|
||||||
retval=jtag->speed(cur_speed);
|
|
||||||
}
|
|
||||||
} else if (argc == 0)
|
|
||||||
{
|
|
||||||
} else
|
|
||||||
{
|
|
||||||
return ERROR_COMMAND_SYNTAX_ERROR;
|
|
||||||
}
|
}
|
||||||
command_print(cmd_ctx, "jtag_speed: %d", jtag_speed);
|
command_print(cmd_ctx, "jtag_speed: %d", jtag_speed);
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue