firmware: Fix the loop condition of _wait_relocate_copy_done section

If core-0 have finished _fdt_reloc_done but any of other cores has not
yet left the loop in _wait_relocate_copy_done, they could never leave
the loop because _boot_status is not equal to 1.
This commit is contained in:
Nylon Chen
2019-08-02 13:34:42 +08:00
committed by Anup Patel
parent 0f18b3fe0a
commit c1b9dd3ab5

View File

@@ -121,7 +121,7 @@ _wait_relocate_copy_done:
nop
nop
nop
bne t4, t5, 1b
bgt t4, t5, 1b
jr t3
_relocate_done: