nor/at91sam3: change prototype of get_current_sam3()
To prepare for handling TCL return values consistently, all calls to command_print/command_print_sameline should be ready to switch to CMD as first parameter. Change prototype of get_current_sam3() to pass CMD instead of CMD_CTX. This change was part of http://openocd.zylin.com/1815 from Paul Fertser and has been extracted and rebased to simplify the review. Change-Id: Ia1e7af79d0fc89d229b4e10df37317a374bbab62 Signed-off-by: Paul Fertser <fercerpav@gmail.com> Signed-off-by: Tomas Vanek <vanekt@fbl.cz> Signed-off-by: Antonio Borneo <borneo.antonio@gmail.com> Reviewed-on: http://openocd.zylin.com/5054 Tested-by: jenkinsbscan_optimization
parent
962267ba1a
commit
30de1bfda4
|
@ -249,14 +249,14 @@ struct sam3_reg_list {
|
||||||
|
|
||||||
static struct sam3_chip *all_sam3_chips;
|
static struct sam3_chip *all_sam3_chips;
|
||||||
|
|
||||||
static struct sam3_chip *get_current_sam3(struct command_context *cmd_ctx)
|
static struct sam3_chip *get_current_sam3(struct command_invocation *cmd)
|
||||||
{
|
{
|
||||||
struct target *t;
|
struct target *t;
|
||||||
static struct sam3_chip *p;
|
static struct sam3_chip *p;
|
||||||
|
|
||||||
t = get_current_target(cmd_ctx);
|
t = get_current_target(cmd->ctx);
|
||||||
if (!t) {
|
if (!t) {
|
||||||
command_print(cmd_ctx, "No current target?");
|
command_print(cmd->ctx, "No current target?");
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -264,7 +264,7 @@ static struct sam3_chip *get_current_sam3(struct command_context *cmd_ctx)
|
||||||
if (!p) {
|
if (!p) {
|
||||||
/* this should not happen */
|
/* this should not happen */
|
||||||
/* the command is not registered until the chip is created? */
|
/* the command is not registered until the chip is created? */
|
||||||
command_print(cmd_ctx, "No SAM3 chips exist?");
|
command_print(cmd->ctx, "No SAM3 chips exist?");
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -273,7 +273,7 @@ static struct sam3_chip *get_current_sam3(struct command_context *cmd_ctx)
|
||||||
return p;
|
return p;
|
||||||
p = p->next;
|
p = p->next;
|
||||||
}
|
}
|
||||||
command_print(cmd_ctx, "Cannot find SAM3 chip?");
|
command_print(cmd->ctx, "Cannot find SAM3 chip?");
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -3538,7 +3538,7 @@ done:
|
||||||
COMMAND_HANDLER(sam3_handle_info_command)
|
COMMAND_HANDLER(sam3_handle_info_command)
|
||||||
{
|
{
|
||||||
struct sam3_chip *pChip;
|
struct sam3_chip *pChip;
|
||||||
pChip = get_current_sam3(CMD_CTX);
|
pChip = get_current_sam3(CMD);
|
||||||
if (!pChip)
|
if (!pChip)
|
||||||
return ERROR_OK;
|
return ERROR_OK;
|
||||||
|
|
||||||
|
@ -3598,7 +3598,7 @@ COMMAND_HANDLER(sam3_handle_gpnvm_command)
|
||||||
int r, who;
|
int r, who;
|
||||||
struct sam3_chip *pChip;
|
struct sam3_chip *pChip;
|
||||||
|
|
||||||
pChip = get_current_sam3(CMD_CTX);
|
pChip = get_current_sam3(CMD);
|
||||||
if (!pChip)
|
if (!pChip)
|
||||||
return ERROR_OK;
|
return ERROR_OK;
|
||||||
|
|
||||||
|
@ -3682,7 +3682,7 @@ COMMAND_HANDLER(sam3_handle_slowclk_command)
|
||||||
{
|
{
|
||||||
struct sam3_chip *pChip;
|
struct sam3_chip *pChip;
|
||||||
|
|
||||||
pChip = get_current_sam3(CMD_CTX);
|
pChip = get_current_sam3(CMD);
|
||||||
if (!pChip)
|
if (!pChip)
|
||||||
return ERROR_OK;
|
return ERROR_OK;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue