X-Git-Url: https://review.openocd.org/gitweb?p=openocd.git;a=blobdiff_plain;f=src%2Fjtag%2Fcommands.h;h=f5793de5f0f5d171de2198213e4a9baeef245099;hp=858f7aad5011529ad36682ea59e286573a7039c7;hb=c07f0600ff3c77a00efaf4bdcd4dc3691f0421f6;hpb=af3f4a0bbefd796bd40602ae28f66dd373272e6a diff --git a/src/jtag/commands.h b/src/jtag/commands.h index 858f7aad50..f5793de5f0 100644 --- a/src/jtag/commands.h +++ b/src/jtag/commands.h @@ -62,13 +62,12 @@ struct statemove_command { tap_state_t end_state; }; -typedef struct pathmove_command_s -{ +struct pathmove_command { /// number of states in *path int num_states; /// states that have to be passed tap_state_t* path; -} pathmove_command_t; +}; typedef struct runtest_command_s { @@ -114,7 +113,7 @@ typedef union jtag_command_container_u { struct scan_command* scan; struct statemove_command* statemove; - pathmove_command_t* pathmove; + struct pathmove_command* pathmove; runtest_command_t* runtest; stableclocks_command_t* stableclocks; reset_command_t* reset;