From 2fecae46f62ca98657d650de9fc73d44247971e8 Mon Sep 17 00:00:00 2001 From: Zachary T Welch Date: Fri, 13 Nov 2009 05:56:26 -0800 Subject: stableclocks_command_t -> struct stableclocks_command Remove misleading typedef from struct stableclocks_command. --- src/jtag/commands.h | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) (limited to 'src/jtag/commands.h') diff --git a/src/jtag/commands.h b/src/jtag/commands.h index f43a4149..509ca5aa 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; -- cgit v1.2.3