target_t -> struct target
Remove misleading typedef and redundant suffix from struct target.
This commit is contained in:
@@ -279,7 +279,7 @@ static void etm_reg_add(unsigned bcd_vers, struct arm_jtag *jtag_info,
|
||||
}
|
||||
}
|
||||
|
||||
struct reg_cache *etm_build_reg_cache(target_t *target,
|
||||
struct reg_cache *etm_build_reg_cache(struct target *target,
|
||||
struct arm_jtag *jtag_info, struct etm_context *etm_ctx)
|
||||
{
|
||||
struct reg_cache *reg_cache = malloc(sizeof(struct reg_cache));
|
||||
@@ -421,7 +421,7 @@ static int etm_store_reg(struct reg *reg)
|
||||
return etm_write_reg(reg, buf_get_u32(reg->value, 0, reg->size));
|
||||
}
|
||||
|
||||
int etm_setup(target_t *target)
|
||||
int etm_setup(struct target *target)
|
||||
{
|
||||
int retval;
|
||||
uint32_t etm_ctrl_value;
|
||||
@@ -1249,7 +1249,7 @@ static COMMAND_HELPER(handle_etm_tracemode_command_update,
|
||||
|
||||
COMMAND_HANDLER(handle_etm_tracemode_command)
|
||||
{
|
||||
target_t *target = get_current_target(cmd_ctx);
|
||||
struct target *target = get_current_target(cmd_ctx);
|
||||
struct arm *arm = target_to_arm(target);
|
||||
struct etm_context *etm;
|
||||
|
||||
@@ -1371,7 +1371,7 @@ COMMAND_HANDLER(handle_etm_tracemode_command)
|
||||
|
||||
COMMAND_HANDLER(handle_etm_config_command)
|
||||
{
|
||||
target_t *target;
|
||||
struct target *target;
|
||||
struct arm *arm;
|
||||
etm_portmode_t portmode = 0x0;
|
||||
struct etm_context *etm_ctx;
|
||||
@@ -1521,7 +1521,7 @@ COMMAND_HANDLER(handle_etm_config_command)
|
||||
|
||||
COMMAND_HANDLER(handle_etm_info_command)
|
||||
{
|
||||
target_t *target;
|
||||
struct target *target;
|
||||
struct arm *arm;
|
||||
struct etm_context *etm;
|
||||
struct reg *etm_sys_config_reg;
|
||||
@@ -1653,7 +1653,7 @@ COMMAND_HANDLER(handle_etm_info_command)
|
||||
|
||||
COMMAND_HANDLER(handle_etm_status_command)
|
||||
{
|
||||
target_t *target;
|
||||
struct target *target;
|
||||
struct arm *arm;
|
||||
struct etm_context *etm;
|
||||
trace_status_t trace_status;
|
||||
@@ -1729,7 +1729,7 @@ COMMAND_HANDLER(handle_etm_status_command)
|
||||
|
||||
COMMAND_HANDLER(handle_etm_image_command)
|
||||
{
|
||||
target_t *target;
|
||||
struct target *target;
|
||||
struct arm *arm;
|
||||
struct etm_context *etm_ctx;
|
||||
|
||||
@@ -1789,7 +1789,7 @@ COMMAND_HANDLER(handle_etm_image_command)
|
||||
COMMAND_HANDLER(handle_etm_dump_command)
|
||||
{
|
||||
struct fileio file;
|
||||
target_t *target;
|
||||
struct target *target;
|
||||
struct arm *arm;
|
||||
struct etm_context *etm_ctx;
|
||||
uint32_t i;
|
||||
@@ -1857,7 +1857,7 @@ COMMAND_HANDLER(handle_etm_dump_command)
|
||||
COMMAND_HANDLER(handle_etm_load_command)
|
||||
{
|
||||
struct fileio file;
|
||||
target_t *target;
|
||||
struct target *target;
|
||||
struct arm *arm;
|
||||
struct etm_context *etm_ctx;
|
||||
uint32_t i;
|
||||
@@ -1940,7 +1940,7 @@ COMMAND_HANDLER(handle_etm_load_command)
|
||||
|
||||
COMMAND_HANDLER(handle_etm_trigger_percent_command)
|
||||
{
|
||||
target_t *target;
|
||||
struct target *target;
|
||||
struct arm *arm;
|
||||
struct etm_context *etm_ctx;
|
||||
|
||||
@@ -1981,7 +1981,7 @@ COMMAND_HANDLER(handle_etm_trigger_percent_command)
|
||||
|
||||
COMMAND_HANDLER(handle_etm_start_command)
|
||||
{
|
||||
target_t *target;
|
||||
struct target *target;
|
||||
struct arm *arm;
|
||||
struct etm_context *etm_ctx;
|
||||
struct reg *etm_ctrl_reg;
|
||||
@@ -2029,7 +2029,7 @@ COMMAND_HANDLER(handle_etm_start_command)
|
||||
|
||||
COMMAND_HANDLER(handle_etm_stop_command)
|
||||
{
|
||||
target_t *target;
|
||||
struct target *target;
|
||||
struct arm *arm;
|
||||
struct etm_context *etm_ctx;
|
||||
struct reg *etm_ctrl_reg;
|
||||
@@ -2068,7 +2068,7 @@ COMMAND_HANDLER(handle_etm_stop_command)
|
||||
|
||||
COMMAND_HANDLER(handle_etm_analyze_command)
|
||||
{
|
||||
target_t *target;
|
||||
struct target *target;
|
||||
struct arm *arm;
|
||||
struct etm_context *etm_ctx;
|
||||
int retval;
|
||||
|
||||
Reference in New Issue
Block a user