fix return code from dsp5680xx_read
it returned ERROR_OK even though it actually failed. this made the Tcl interface report success, though it had not succeeded.
This commit is contained in:
parent
67f1f0c7b5
commit
7675db7e92
|
@ -726,7 +726,7 @@ static int dsp5680xx_read_32_single(struct target * target, uint32_t address, ui
|
||||||
static int dsp5680xx_read(struct target * target, uint32_t address, unsigned size, unsigned count, uint8_t * buffer){
|
static int dsp5680xx_read(struct target * target, uint32_t address, unsigned size, unsigned count, uint8_t * buffer){
|
||||||
if(target->state != TARGET_HALTED){
|
if(target->state != TARGET_HALTED){
|
||||||
LOG_USER("Target must be halted.");
|
LOG_USER("Target must be halted.");
|
||||||
return ERROR_OK;
|
return ERROR_FAIL;
|
||||||
}
|
}
|
||||||
int retval = ERROR_OK;
|
int retval = ERROR_OK;
|
||||||
int pmem = 1;
|
int pmem = 1;
|
||||||
|
|
Loading…
Reference in New Issue