mirror of
git://git.code.sf.net/p/openocd/code
synced 2025-07-26 23:40:22 +10:00
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>
This commit is contained in:
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
Block a user