riscv: don't supporess errors
This commit is contained in:
parent
4c6c4cb078
commit
716c12bcaf
|
@ -466,11 +466,7 @@ static dmi_status_t dmi_scan(struct target *target, uint32_t *address_in,
|
||||||
|
|
||||||
int retval = jtag_execute_queue();
|
int retval = jtag_execute_queue();
|
||||||
if (retval != ERROR_OK) {
|
if (retval != ERROR_OK) {
|
||||||
static int once = 1;
|
LOG_ERROR("dmi_scan failed jtag scan");
|
||||||
if (once) {
|
|
||||||
LOG_ERROR("dmi_scan failed jtag scan");
|
|
||||||
once = 0;
|
|
||||||
}
|
|
||||||
return DMI_STATUS_FAILED;
|
return DMI_STATUS_FAILED;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue