1
0
Fork 0
mirror of https://github.com/hermitcore/libhermit.git synced 2025-03-09 00:00:03 +01:00

only single kernel has to wakeup th application processors

- in the multi kernel environment, Linux wakeups the application
  processors
This commit is contained in:
Stefan Lankes 2016-09-22 20:04:34 +02:00
parent 11aaf99390
commit 2f78c2042b

View file

@ -624,7 +624,8 @@ int apic_calibration(void)
}
#if MAX_CORES > 1
smp_init();
if (is_single_kernel())
smp_init();
#endif
return 0;