smp: Print success message on CPU#0

SMP secondary prints only go to UART, so we need something on the main
CPU for other iodev consoles.

Signed-off-by: Hector Martin <marcan@marcan.st>
This commit is contained in:
Hector Martin 2021-04-17 16:30:18 +09:00
parent 34c1dc50ae
commit fcdf2aede9

View file

@ -91,6 +91,8 @@ static void smp_start_cpu(int index, int cluster, int core, u64 rvbar, u64 cpu_s
if (i >= 500)
printf("Failed!\n");
else
printf(" Started.\n");
}
void smp_start_secondaries(void)