trace_t -> struct trace

Remove misleading typedef and redundant suffix from struct trace.
This commit is contained in:
Zachary T Welch
2009-11-13 09:26:19 -08:00
parent d90063ffc5
commit 4952eadd8f
4 changed files with 8 additions and 8 deletions

View File

@@ -27,7 +27,7 @@
int trace_point(target_t *target, uint32_t number)
{
trace_t *trace = target->trace_info;
struct trace *trace = target->trace_info;
LOG_DEBUG("tracepoint: %i", (int)number);
@@ -50,7 +50,7 @@ int trace_point(target_t *target, uint32_t number)
COMMAND_HANDLER(handle_trace_point_command)
{
target_t *target = get_current_target(cmd_ctx);
trace_t *trace = target->trace_info;
struct trace *trace = target->trace_info;
if (argc == 0)
{
@@ -98,7 +98,7 @@ COMMAND_HANDLER(handle_trace_point_command)
COMMAND_HANDLER(handle_trace_history_command)
{
target_t *target = get_current_target(cmd_ctx);
trace_t *trace = target->trace_info;
struct trace *trace = target->trace_info;
if (argc > 0)
{