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>
This commit is contained in:
Øyvind Harboe
2009-10-31 13:57:18 +01:00
parent acff2521fb
commit af66678c9a
16 changed files with 0 additions and 92 deletions

View File

@@ -47,7 +47,6 @@
/* forward declarations */
static int arm9tdmi_target_create(struct target_s *target, Jim_Interp *interp);
static int arm9tdmi_quit(void);
target_type_t arm9tdmi_target =
{
@@ -85,7 +84,6 @@ target_type_t arm9tdmi_target =
.target_create = arm9tdmi_target_create,
.init_target = arm9tdmi_init_target,
.examine = arm9tdmi_examine,
.quit = arm9tdmi_quit
};
static arm9tdmi_vector_t arm9tdmi_vectors[] =
@@ -859,11 +857,6 @@ int arm9tdmi_init_target(struct command_context_s *cmd_ctx, struct target_s *tar
return ERROR_OK;
}
static int arm9tdmi_quit(void)
{
return ERROR_OK;
}
int arm9tdmi_init_arch_info(target_t *target, arm9tdmi_common_t *arm9tdmi, jtag_tap_t *tap)
{
armv4_5_common_t *armv4_5;