X-Git-Url: https://review.openocd.org/gitweb?p=openocd.git;a=blobdiff_plain;f=src%2Fjtag%2Fminidummy%2Fminidummy.c;h=41181550ec6eeb725cbc1b73924e57e1a5a22260;hp=67919e4e3070c5c24026f2e6d241326914b22805;hb=165fb9309d16ff91967f26ce8c01bfd176371506;hpb=ef746e27c55c14b7a4f6381c490e5c175e409c0b diff --git a/src/jtag/minidummy/minidummy.c b/src/jtag/minidummy/minidummy.c index 67919e4e30..41181550ec 100644 --- a/src/jtag/minidummy/minidummy.c +++ b/src/jtag/minidummy/minidummy.c @@ -22,17 +22,14 @@ #include "embeddedice.h" #include "minidriver.h" -#include "interface.h" - - - +#include struct jtag_interface minidummy_interface = { .name = "minidummy", .execute_queue = NULL, .speed = NULL, - .register_commands = NULL, + .commands = NULL, .init = NULL, .quit = NULL, .khz = NULL, @@ -41,11 +38,6 @@ struct jtag_interface minidummy_interface = .srst_asserted = NULL, }; - - - - - int interface_jtag_execute_queue(void) { /* synchronously do the operation here */ @@ -53,12 +45,6 @@ int interface_jtag_execute_queue(void) return ERROR_OK; } - - - - -extern int jtag_check_value(uint8_t *captured, void *priv); - int interface_jtag_add_ir_scan(int num_fields, const struct scan_field *fields, tap_state_t state) { /* synchronously do the operation here */ @@ -67,10 +53,6 @@ int interface_jtag_add_ir_scan(int num_fields, const struct scan_field *fields, } - - - - int interface_jtag_add_plain_ir_scan(int num_fields, const struct scan_field *fields, tap_state_t state) { /* synchronously do the operation here */ @@ -78,8 +60,6 @@ int interface_jtag_add_plain_ir_scan(int num_fields, const struct scan_field *fi return ERROR_OK; } -/*extern jtag_struct command **jtag_get_last_command_p(void);*/ - int interface_jtag_add_dr_scan(int num_fields, const struct scan_field *fields, tap_state_t state) { /* synchronously do the operation here */ @@ -94,7 +74,6 @@ int interface_jtag_add_plain_dr_scan(int num_fields, const struct scan_field *fi return ERROR_OK; } - int interface_jtag_add_tlr() { /* synchronously do the operation here */ @@ -102,8 +81,6 @@ int interface_jtag_add_tlr() return ERROR_OK; } - - int interface_jtag_add_reset(int req_trst, int req_srst) { /* synchronously do the operation here */ @@ -111,7 +88,6 @@ int interface_jtag_add_reset(int req_trst, int req_srst) return ERROR_OK; } - int interface_jtag_add_runtest(int num_cycles, tap_state_t state) { /* synchronously do the operation here */ @@ -170,8 +146,6 @@ int interface_jtag_add_pathmove(int num_states, const tap_state_t *path) return ERROR_OK; } - - void embeddedice_write_dcc(struct jtag_tap *tap, int reg_addr, uint8_t *buffer, int little, int count) { int i; @@ -181,4 +155,3 @@ void embeddedice_write_dcc(struct jtag_tap *tap, int reg_addr, uint8_t *buffer, buffer += 4; } } -