Merge pull request #248 from riscv/fix_011
Don't error if hart select isn't implemented.
This commit is contained in:
commit
06e6c2297f
|
@ -1706,7 +1706,7 @@ int riscv_set_current_hartid(struct target *target, int hartid)
|
||||||
{
|
{
|
||||||
RISCV_INFO(r);
|
RISCV_INFO(r);
|
||||||
if (!r->select_current_hart)
|
if (!r->select_current_hart)
|
||||||
return ERROR_FAIL;
|
return ERROR_OK;
|
||||||
|
|
||||||
int previous_hartid = riscv_current_hartid(target);
|
int previous_hartid = riscv_current_hartid(target);
|
||||||
r->current_hartid = hartid;
|
r->current_hartid = hartid;
|
||||||
|
|
Loading…
Reference in New Issue