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__
parent
20724e3325
commit
dcc7de4f9b
|
@ -711,7 +711,7 @@ int arm920t_write_memory(struct target *target, uint32_t address,
|
|||
}
|
||||
}
|
||||
|
||||
return retval;
|
||||
return ERROR_OK;
|
||||
}
|
||||
|
||||
// EXPORTED to FA256
|
||||
|
|
Loading…
Reference in New Issue