summaryrefslogtreecommitdiff
path: root/src/jtag/dummy.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/jtag/dummy.c')
-rw-r--r--src/jtag/dummy.c6
1 files changed, 0 insertions, 6 deletions
diff --git a/src/jtag/dummy.c b/src/jtag/dummy.c
index 90c60db8..0565edaf 100644
--- a/src/jtag/dummy.c
+++ b/src/jtag/dummy.c
@@ -26,7 +26,6 @@
#include "jtag.h"
#include "bitbang.h"
-
int dummy_speed(int speed);
int dummy_register_commands(struct command_context_s *cmd_ctx);
int dummy_init(void);
@@ -65,7 +64,6 @@ int dummy_read(void)
return 1;
}
-
void dummy_write(int tck, int tms, int tdi)
{
}
@@ -73,7 +71,6 @@ void dummy_write(int tck, int tms, int tdi)
void dummy_reset(int trst, int srst)
{
}
-
int dummy_speed(int speed)
{
@@ -85,7 +82,6 @@ int dummy_register_commands(struct command_context_s *cmd_ctx)
return ERROR_OK;
}
-
int dummy_init(void)
{
bitbang_interface = &dummy_bitbang;
@@ -98,8 +94,6 @@ int dummy_quit(void)
return ERROR_OK;
}
-
void dummy_led(int on)
{
}
-