From 2fecae46f62ca98657d650de9fc73d44247971e8 Mon Sep 17 00:00:00 2001 From: Zachary T Welch Date: Fri, 13 Nov 2009 05:56:26 -0800 Subject: [PATCH] stableclocks_command_t -> struct stableclocks_command Remove misleading typedef from struct stableclocks_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 f43a4149b2..509ca5aadb 100644 --- a/src/jtag/commands.h +++ b/src/jtag/commands.h @@ -77,11 +77,10 @@ struct runtest_command { }; -typedef struct stableclocks_command_s -{ +struct stableclocks_command { /// number of clock cycles that should be sent int num_cycles; -} stableclocks_command_t; +}; typedef struct reset_command_s @@ -114,7 +113,7 @@ typedef union jtag_command_container_u struct statemove_command* statemove; struct pathmove_command* pathmove; struct runtest_command* runtest; - stableclocks_command_t* stableclocks; + struct stableclocks_command* stableclocks; reset_command_t* reset; end_state_command_t* end_state; sleep_command_t* sleep; diff --git a/src/jtag/driver.c b/src/jtag/driver.c index 71cde0ec98..1f28d183ab 100644 --- a/src/jtag/driver.c +++ b/src/jtag/driver.c @@ -427,7 +427,7 @@ int interface_jtag_add_clocks(int num_cycles) cmd->type = JTAG_STABLECLOCKS; - cmd->cmd.stableclocks = cmd_queue_alloc(sizeof(stableclocks_command_t)); + cmd->cmd.stableclocks = cmd_queue_alloc(sizeof(struct stableclocks_command)); cmd->cmd.stableclocks->num_cycles = num_cycles; return ERROR_OK; -- 2.30.2