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

@@ -1498,11 +1498,6 @@ static int cortex_m3_examine(struct target_s *target)
return ERROR_OK;
}
static int cortex_m3_quit(void)
{
return ERROR_OK;
}
static int cortex_m3_dcc_read(swjdp_common_t *swjdp, uint8_t *value, uint8_t *ctrl)
{
uint16_t dcrdr;
@@ -1843,6 +1838,5 @@ target_type_t cortexm3_target =
.target_create = cortex_m3_target_create,
.init_target = cortex_m3_init_target,
.examine = cortex_m3_examine,
.quit = cortex_m3_quit
};