summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorZachary T Welch <zw@superlucidity.net>2009-11-16 04:29:45 -0800
committerZachary T Welch <zw@superlucidity.net>2009-11-16 05:30:51 -0800
commitd7a0dfa4dc28c60c3137b9f9acf3fcc046730f0f (patch)
tree7082cb0f88e915f946ac24f212f27368afcd0e90 /src
parent555757175eb344d11f3c0123f2f83460ef6ca67b (diff)
downloadopenocd+libswd-d7a0dfa4dc28c60c3137b9f9acf3fcc046730f0f.tar.gz
openocd+libswd-d7a0dfa4dc28c60c3137b9f9acf3fcc046730f0f.tar.bz2
openocd+libswd-d7a0dfa4dc28c60c3137b9f9acf3fcc046730f0f.tar.xz
openocd+libswd-d7a0dfa4dc28c60c3137b9f9acf3fcc046730f0f.zip
cleanup jtag minidrivers
Remove two vestigial externs from our JTAG minidriver source files. Also, removes many extra blank lines from the minidummy driver.
Diffstat (limited to 'src')
-rw-r--r--src/jtag/minidummy/minidummy.c27
-rw-r--r--src/jtag/zy1000/zy1000.c4
2 files changed, 0 insertions, 31 deletions
diff --git a/src/jtag/minidummy/minidummy.c b/src/jtag/minidummy/minidummy.c
index 67919e4e..1bee74eb 100644
--- a/src/jtag/minidummy/minidummy.c
+++ b/src/jtag/minidummy/minidummy.c
@@ -24,9 +24,6 @@
#include "minidriver.h"
#include "interface.h"
-
-
-
struct jtag_interface minidummy_interface =
{
.name = "minidummy",
@@ -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;
}
}
-
diff --git a/src/jtag/zy1000/zy1000.c b/src/jtag/zy1000/zy1000.c
index 526914af..9a5d2e78 100644
--- a/src/jtag/zy1000/zy1000.c
+++ b/src/jtag/zy1000/zy1000.c
@@ -455,8 +455,6 @@ static void shiftValueInnerFlip(const tap_state_t state, const tap_state_t endSt
}
#endif
-extern int jtag_check_value(uint8_t *captured, void *priv);
-
static void gotoEndState(tap_state_t end_state)
{
setCurrentState(end_state);
@@ -595,8 +593,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)
{