TARGET/ARM920T: fix return value

Function arm920t_write_memory() default return value
should be ERROR_OK.
All cases of local errors are handled immediately and
not further propagated.

Signed-off-by: Antonio Borneo <borneo.antonio@gmail.com>
__archive__
Antonio Borneo 2010-06-12 11:07:47 +08:00 committed by Øyvind Harboe
parent 20724e3325
commit dcc7de4f9b
1 changed files with 1 additions and 1 deletions

View File

@ -711,7 +711,7 @@ int arm920t_write_memory(struct target *target, uint32_t address,
} }
} }
return retval; return ERROR_OK;
} }
// EXPORTED to FA256 // EXPORTED to FA256