target: remove unimplemented target_request_data implementations

Change-Id: Ia9afa83752d17f0f56bdf3bd81f5c69d108aa5e9
Signed-off-by: Spencer Oliver <spen@spen-soft.co.uk>
Reviewed-on: http://openocd.zylin.com/1537
Tested-by: jenkins
Reviewed-by: Andreas Fritiofson <andreas.fritiofson@gmail.com>
This commit is contained in:
Spencer Oliver
2013-08-02 13:01:03 +01:00
parent 854a114221
commit 32ac9c0144
8 changed files with 0 additions and 27 deletions

View File

@@ -363,15 +363,6 @@ static int arm11_arch_state(struct target *target)
return retval;
}
/* target request support */
static int arm11_target_request_data(struct target *target,
uint32_t size, uint8_t *buffer)
{
LOG_WARNING("Not implemented: %s", __func__);
return ERROR_FAIL;
}
/* target execution control */
static int arm11_halt(struct target *target)
{
@@ -1333,8 +1324,6 @@ struct target_type arm11_target = {
.poll = arm11_poll,
.arch_state = arm11_arch_state,
.target_request_data = arm11_target_request_data,
.halt = arm11_halt,
.resume = arm11_resume,
.step = arm11_step,