Remove Off By 1 FIXME because HW is fixed
This commit is contained in:
parent
3c5cb81a09
commit
0e54044ac7
|
@ -1229,9 +1229,7 @@ static int examine(struct target *target)
|
||||||
r->hart_count = i + 1;
|
r->hart_count = i + 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* FIXME: This is broken. */
|
LOG_DEBUG("Enumerated %d harts", r->hart_count);
|
||||||
LOG_ERROR("Enumerated %d harts, but there's an off-by-one error in the hardware", r->hart_count);
|
|
||||||
r->hart_count--;
|
|
||||||
|
|
||||||
/* Halt every hart so we can probe them. */
|
/* Halt every hart so we can probe them. */
|
||||||
riscv_halt_all_harts(target);
|
riscv_halt_all_harts(target);
|
||||||
|
|
Loading…
Reference in New Issue