From af3f4a0bbefd796bd40602ae28f66dd373272e6a Mon Sep 17 00:00:00 2001 From: Zachary T Welch Date: Fri, 13 Nov 2009 05:52:51 -0800 Subject: [PATCH] statemove_command_t -> struct statemove_command Remove misleading typedef from struct statemove_command. --- src/jtag/commands.h | 7 +++---- src/jtag/driver.c | 2 +- 2 files changed, 4 insertions(+), 5 deletions(-) diff --git a/src/jtag/commands.h b/src/jtag/commands.h index d13a9ab448..858f7aad50 100644 --- a/src/jtag/commands.h +++ b/src/jtag/commands.h @@ -57,11 +57,10 @@ struct scan_command { tap_state_t end_state; }; -typedef struct statemove_command_s -{ +struct statemove_command { /// state in which JTAG commands should finish tap_state_t end_state; -} statemove_command_t; +}; typedef struct pathmove_command_s { @@ -114,7 +113,7 @@ typedef struct sleep_command_s typedef union jtag_command_container_u { struct scan_command* scan; - statemove_command_t* statemove; + struct statemove_command* statemove; pathmove_command_t* pathmove; runtest_command_t* runtest; stableclocks_command_t* stableclocks; diff --git a/src/jtag/driver.c b/src/jtag/driver.c index d50ae9055e..6f20573490 100644 --- a/src/jtag/driver.c +++ b/src/jtag/driver.c @@ -377,7 +377,7 @@ int interface_jtag_add_tlr(void) cmd->type = JTAG_STATEMOVE; - cmd->cmd.statemove = cmd_queue_alloc(sizeof(statemove_command_t)); + cmd->cmd.statemove = cmd_queue_alloc(sizeof(struct statemove_command)); cmd->cmd.statemove->end_state = state; return ERROR_OK; -- 2.30.2