summaryrefslogtreecommitdiff
path: root/src/target/mips_m4k.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/mips_m4k.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/mips_m4k.c')
-rw-r--r--src/target/mips_m4k.c7
1 files changed, 0 insertions, 7 deletions
diff --git a/src/target/mips_m4k.c b/src/target/mips_m4k.c
index 6458c260..07731a0a 100644
--- a/src/target/mips_m4k.c
+++ b/src/target/mips_m4k.c
@@ -41,7 +41,6 @@ int mips_m4k_read_memory(struct target_s *target, uint32_t address, uint32_t siz
int mips_m4k_write_memory(struct target_s *target, uint32_t address, uint32_t size, uint32_t count, uint8_t *buffer);
int mips_m4k_register_commands(struct command_context_s *cmd_ctx);
int mips_m4k_init_target(struct command_context_s *cmd_ctx, struct target_s *target);
-int mips_m4k_quit(void);
int mips_m4k_target_create(struct target_s *target, Jim_Interp *interp);
int mips_m4k_examine(struct target_s *target);
@@ -85,7 +84,6 @@ target_type_t mips_m4k_target =
.target_create = mips_m4k_target_create,
.init_target = mips_m4k_init_target,
.examine = mips_m4k_examine,
- .quit = mips_m4k_quit
};
int mips_m4k_examine_debug_reason(target_t *target)
@@ -919,11 +917,6 @@ int mips_m4k_init_target(struct command_context_s *cmd_ctx, struct target_s *tar
return ERROR_OK;
}
-int mips_m4k_quit(void)
-{
- return ERROR_OK;
-}
-
int mips_m4k_init_arch_info(target_t *target, mips_m4k_common_t *mips_m4k, jtag_tap_t *tap)
{
mips32_common_t *mips32 = &mips_m4k->mips32_common;