Use enum for target_register_timer_callback()
Change-Id: I268e8c5d783914aa97cbde301448b2c5bc3cb9e6 Signed-off-by: Marc Schink <openocd-dev@marcschink.de> Reviewed-on: http://openocd.zylin.com/4921 Tested-by: jenkins Reviewed-by: Tomas Vanek <vanekt@fbl.cz>reverse-resume-order
parent
17a052d6fe
commit
21687eb983
|
@ -2388,7 +2388,8 @@ static int aarch64_init_arch_info(struct target *target,
|
||||||
armv8->armv8_mmu.read_physical_memory = aarch64_read_phys_memory;
|
armv8->armv8_mmu.read_physical_memory = aarch64_read_phys_memory;
|
||||||
|
|
||||||
armv8_init_arch_info(target, armv8);
|
armv8_init_arch_info(target, armv8);
|
||||||
target_register_timer_callback(aarch64_handle_target_request, 1, 1, target);
|
target_register_timer_callback(aarch64_handle_target_request, 1,
|
||||||
|
TARGET_TIMER_TYPE_PERIODIC, target);
|
||||||
|
|
||||||
return ERROR_OK;
|
return ERROR_OK;
|
||||||
}
|
}
|
||||||
|
|
|
@ -2859,7 +2859,7 @@ int arm7_9_init_arch_info(struct target *target, struct arm7_9_common *arm7_9)
|
||||||
return retval;
|
return retval;
|
||||||
|
|
||||||
return target_register_timer_callback(arm7_9_handle_target_request,
|
return target_register_timer_callback(arm7_9_handle_target_request,
|
||||||
1, 1, target);
|
1, TARGET_TIMER_TYPE_PERIODIC, target);
|
||||||
}
|
}
|
||||||
|
|
||||||
static const struct command_registration arm7_9_any_command_handlers[] = {
|
static const struct command_registration arm7_9_any_command_handlers[] = {
|
||||||
|
|
|
@ -116,7 +116,8 @@ int armv7m_trace_tpiu_config(struct target *target)
|
||||||
return retval;
|
return retval;
|
||||||
|
|
||||||
if (trace_config->config_type == TRACE_CONFIG_TYPE_INTERNAL)
|
if (trace_config->config_type == TRACE_CONFIG_TYPE_INTERNAL)
|
||||||
target_register_timer_callback(armv7m_poll_trace, 1, 1, target);
|
target_register_timer_callback(armv7m_poll_trace, 1,
|
||||||
|
TARGET_TIMER_TYPE_PERIODIC, target);
|
||||||
|
|
||||||
target_call_event_callbacks(target, TARGET_EVENT_TRACE_CONFIG);
|
target_call_event_callbacks(target, TARGET_EVENT_TRACE_CONFIG);
|
||||||
|
|
||||||
|
|
|
@ -2833,7 +2833,8 @@ static int cortex_a_init_arch_info(struct target *target,
|
||||||
|
|
||||||
/* REVISIT v7a setup should be in a v7a-specific routine */
|
/* REVISIT v7a setup should be in a v7a-specific routine */
|
||||||
armv7a_init_arch_info(target, armv7a);
|
armv7a_init_arch_info(target, armv7a);
|
||||||
target_register_timer_callback(cortex_a_handle_target_request, 1, 1, target);
|
target_register_timer_callback(cortex_a_handle_target_request, 1,
|
||||||
|
TARGET_TIMER_TYPE_PERIODIC, target);
|
||||||
|
|
||||||
return ERROR_OK;
|
return ERROR_OK;
|
||||||
}
|
}
|
||||||
|
|
|
@ -2269,7 +2269,8 @@ static int cortex_m_init_arch_info(struct target *target,
|
||||||
armv7m->load_core_reg_u32 = cortex_m_load_core_reg_u32;
|
armv7m->load_core_reg_u32 = cortex_m_load_core_reg_u32;
|
||||||
armv7m->store_core_reg_u32 = cortex_m_store_core_reg_u32;
|
armv7m->store_core_reg_u32 = cortex_m_store_core_reg_u32;
|
||||||
|
|
||||||
target_register_timer_callback(cortex_m_handle_target_request, 1, 1, target);
|
target_register_timer_callback(cortex_m_handle_target_request, 1,
|
||||||
|
TARGET_TIMER_TYPE_PERIODIC, target);
|
||||||
|
|
||||||
return ERROR_OK;
|
return ERROR_OK;
|
||||||
}
|
}
|
||||||
|
|
|
@ -346,7 +346,8 @@ static int adapter_init_arch_info(struct target *target,
|
||||||
armv7m->examine_debug_reason = adapter_examine_debug_reason;
|
armv7m->examine_debug_reason = adapter_examine_debug_reason;
|
||||||
armv7m->stlink = true;
|
armv7m->stlink = true;
|
||||||
|
|
||||||
target_register_timer_callback(hl_handle_target_request, 1, 1, target);
|
target_register_timer_callback(hl_handle_target_request, 1,
|
||||||
|
TARGET_TIMER_TYPE_PERIODIC, target);
|
||||||
|
|
||||||
return ERROR_OK;
|
return ERROR_OK;
|
||||||
}
|
}
|
||||||
|
|
|
@ -101,7 +101,8 @@ static int jsp_new_connection(struct connection *connection)
|
||||||
|
|
||||||
jsp_service->connection = connection;
|
jsp_service->connection = connection;
|
||||||
|
|
||||||
int retval = target_register_timer_callback(&jsp_poll_read, 1, 1, jsp_service);
|
int retval = target_register_timer_callback(&jsp_poll_read, 1,
|
||||||
|
TARGET_TIMER_TYPE_PERIODIC, jsp_service);
|
||||||
if (ERROR_OK != retval)
|
if (ERROR_OK != retval)
|
||||||
return retval;
|
return retval;
|
||||||
|
|
||||||
|
|
|
@ -1357,7 +1357,7 @@ static int target_init(struct command_context *cmd_ctx)
|
||||||
return retval;
|
return retval;
|
||||||
|
|
||||||
retval = target_register_timer_callback(&handle_target,
|
retval = target_register_timer_callback(&handle_target,
|
||||||
polling_interval, 1, cmd_ctx->interp);
|
polling_interval, TARGET_TIMER_TYPE_PERIODIC, cmd_ctx->interp);
|
||||||
if (ERROR_OK != retval)
|
if (ERROR_OK != retval)
|
||||||
return retval;
|
return retval;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue