Remove Off By 1 FIXME because HW is fixed

This commit is contained in:
mwachs5 2017-04-10 13:57:31 -07:00 committed by Palmer Dabbelt
parent 3c5cb81a09
commit 0e54044ac7
1 changed files with 1 additions and 3 deletions

View File

@ -1229,9 +1229,7 @@ static int examine(struct target *target)
r->hart_count = i + 1;
}
/* FIXME: This is broken. */
LOG_ERROR("Enumerated %d harts, but there's an off-by-one error in the hardware", r->hart_count);
r->hart_count--;
LOG_DEBUG("Enumerated %d harts", r->hart_count);
/* Halt every hart so we can probe them. */
riscv_halt_all_harts(target);