summaryrefslogtreecommitdiff
path: root/src/target/arm926ejs.c
diff options
context:
space:
mode:
authorØyvind Harboe <oyvind.harboe@zylin.com>2009-10-31 13:57:18 +0100
committerØyvind Harboe <oyvind.harboe@zylin.com>2009-11-05 09:07:56 +0100
commitaf66678c9a76f3bdab23beb3ffa7d7d53423bdfa (patch)
tree3ee48dc1e666f435c999a1e2705e46a88e821a24 /src/target/arm926ejs.c
parentacff2521fb8e47dce4a2e89e2de77e71bf314047 (diff)
downloadopenocd+libswd-af66678c9a76f3bdab23beb3ffa7d7d53423bdfa.tar.gz
openocd+libswd-af66678c9a76f3bdab23beb3ffa7d7d53423bdfa.tar.bz2
openocd+libswd-af66678c9a76f3bdab23beb3ffa7d7d53423bdfa.tar.xz
openocd+libswd-af66678c9a76f3bdab23beb3ffa7d7d53423bdfa.zip
target: remove unused interface fn that clutters code
The quit entry point was not being invoked. Just a source of confusion at this point. XScale ran 100x reset upon quit, but that code made no sense, wasn't commented and never invoke. Signed-off-by: Øyvind Harboe <oyvind.harboe@zylin.com>
Diffstat (limited to 'src/target/arm926ejs.c')
-rw-r--r--src/target/arm926ejs.c6
1 files changed, 0 insertions, 6 deletions
diff --git a/src/target/arm926ejs.c b/src/target/arm926ejs.c
index 608a7edf..ee24f5c3 100644
--- a/src/target/arm926ejs.c
+++ b/src/target/arm926ejs.c
@@ -740,11 +740,6 @@ static int arm926ejs_init_target(struct command_context_s *cmd_ctx,
return ERROR_OK;
}
-static int arm926ejs_quit(void)
-{
- return ERROR_OK;
-}
-
int arm926ejs_init_arch_info(target_t *target, arm926ejs_common_t *arm926ejs,
jtag_tap_t *tap)
{
@@ -978,7 +973,6 @@ target_type_t arm926ejs_target =
.target_create = arm926ejs_target_create,
.init_target = arm926ejs_init_target,
.examine = arm9tdmi_examine,
- .quit = arm926ejs_quit,
.virt2phys = arm926ejs_virt2phys,
.mmu = arm926ejs_mmu,