oocd_trace_t -> struct oocd_trace

Remove misleading typedef and redundant suffix from struct oocd_trace.
This commit is contained in:
Zachary T Welch
2009-11-13 08:43:42 -08:00
parent b87f07110a
commit f4e03e3b90
2 changed files with 15 additions and 15 deletions

View File

@@ -46,13 +46,13 @@ enum
OOCD_TRACE_RESYNC = 0xf0,
};
typedef struct oocd_trace_s
struct oocd_trace
{
etm_context_t *etm_ctx;
char *tty;
int tty_fd;
struct termios oldtio, newtio;
} oocd_trace_t;
};
extern struct etm_capture_driver oocd_trace_capture_driver;