summaryrefslogtreecommitdiff
path: root/src/jtag/drivers/ep93xx.c
diff options
context:
space:
mode:
authorLuca Bruno <lucab@debian.org>2010-09-27 16:21:04 +0200
committerZachary T Welch <zwelch@codesourcery.com>2010-09-30 18:14:36 -0700
commitfb7235f12ad9590ac28f7fa8147c3ade4ce8b460 (patch)
tree0846e13ab68b63ff55905cc83604bea8e46dc6d2 /src/jtag/drivers/ep93xx.c
parent3931b99d142d337ea6558fd09aad2e0812c04507 (diff)
downloadopenocd+libswd-fb7235f12ad9590ac28f7fa8147c3ade4ce8b460.tar.gz
openocd+libswd-fb7235f12ad9590ac28f7fa8147c3ade4ce8b460.tar.bz2
openocd+libswd-fb7235f12ad9590ac28f7fa8147c3ade4ce8b460.tar.xz
openocd+libswd-fb7235f12ad9590ac28f7fa8147c3ade4ce8b460.zip
Update ep93xx and at91rm9200 drivers
ep93xx and at91rm9200 are conditionally built only on arm and were not updated to reflect changes in command registration handler. This patch makes them properly compile again, fixing a build failure experienced on Debian armel. Signed-off-by: Luca Bruno <lucab@debian.org> Signed-off-by: Zachary T Welch <zwelch@codesourcery.com>
Diffstat (limited to 'src/jtag/drivers/ep93xx.c')
-rw-r--r--src/jtag/drivers/ep93xx.c8
1 files changed, 0 insertions, 8 deletions
diff --git a/src/jtag/drivers/ep93xx.c b/src/jtag/drivers/ep93xx.c
index 0959a569..09312c5f 100644
--- a/src/jtag/drivers/ep93xx.c
+++ b/src/jtag/drivers/ep93xx.c
@@ -47,7 +47,6 @@ static void ep93xx_write(int tck, int tms, int tdi);
static void ep93xx_reset(int trst, int srst);
static int ep93xx_speed(int speed);
-static int ep93xx_register_commands(struct command_context *cmd_ctx);
static int ep93xx_init(void);
static int ep93xx_quit(void);
@@ -61,7 +60,6 @@ struct jtag_interface ep93xx_interface =
.execute_queue = bitbang_execute_queue,
.speed = ep93xx_speed,
- .register_commands = ep93xx_register_commands,
.init = ep93xx_init,
.quit = ep93xx_quit,
};
@@ -123,12 +121,6 @@ static int ep93xx_speed(int speed)
return ERROR_OK;
}
-static int ep93xx_register_commands(struct command_context *cmd_ctx)
-{
-
- return ERROR_OK;
-}
-
static int set_gonk_mode(void)
{
void *syscon;