static int avrf_erase(struct flash_bank_s *bank, int first, int last)
{
- LOG_INFO(__FUNCTION__);
+ LOG_INFO("%s", __FUNCTION__);
return ERROR_OK;
}
static int avrf_protect(struct flash_bank_s *bank, int set, int first, int last)
{
- LOG_INFO(__FUNCTION__);
+ LOG_INFO("%s", __FUNCTION__);
return ERROR_OK;
}
static int avrf_protect_check(struct flash_bank_s *bank)
{
- LOG_INFO(__FUNCTION__);
+ LOG_INFO("%s", __FUNCTION__);
return ERROR_OK;
}
command_print(cmd_ctx, "avr mass erase failed");
}
- LOG_DEBUG(__FUNCTION__);
+ LOG_DEBUG("%s", __FUNCTION__);
return ERROR_OK;
}
int avr_register_commands(struct command_context_s *cmd_ctx)
{
- LOG_DEBUG(__FUNCTION__);
+ LOG_DEBUG("%s", __FUNCTION__);
return ERROR_OK;
}
int avr_init_target(struct command_context_s *cmd_ctx, struct target_s *target)
{
- LOG_DEBUG(__FUNCTION__);
+ LOG_DEBUG("%s", __FUNCTION__);
return ERROR_OK;
}
int avr_quit(void)
{
- LOG_DEBUG(__FUNCTION__);
+ LOG_DEBUG("%s", __FUNCTION__);
return ERROR_OK;
}
int avr_arch_state(struct target_s *target)
{
- LOG_DEBUG(__FUNCTION__);
+ LOG_DEBUG("%s", __FUNCTION__);
return ERROR_OK;
}
target->state = TARGET_HALTED;
}
- LOG_DEBUG(__FUNCTION__);
+ LOG_DEBUG("%s", __FUNCTION__);
return ERROR_OK;
}
int avr_halt(target_t *target)
{
- LOG_DEBUG(__FUNCTION__);
+ LOG_DEBUG("%s", __FUNCTION__);
return ERROR_OK;
}
int avr_resume(struct target_s *target, int current, u32 address, int handle_breakpoints, int debug_execution)
{
- LOG_DEBUG(__FUNCTION__);
+ LOG_DEBUG("%s", __FUNCTION__);
return ERROR_OK;
}
int avr_step(struct target_s *target, int current, u32 address, int handle_breakpoints)
{
- LOG_DEBUG(__FUNCTION__);
+ LOG_DEBUG("%s", __FUNCTION__);
return ERROR_OK;
}
{
target->state = TARGET_RESET;
- LOG_DEBUG(__FUNCTION__);
+ LOG_DEBUG("%s", __FUNCTION__);
return ERROR_OK;
}
{
target->state = TARGET_RUNNING;
- LOG_DEBUG(__FUNCTION__);
+ LOG_DEBUG("%s", __FUNCTION__);
return ERROR_OK;
}
int avr_soft_reset_halt(struct target_s *target)
{
- LOG_DEBUG(__FUNCTION__);
+ LOG_DEBUG("%s", __FUNCTION__);
return ERROR_OK;
}