- if (!((cpu_init_detectedx) || (!boot_cpu()))) {
Maybe in a follow-up patch this could become:
- if (!cpu_init_detectedx && boot_cpu()) {
Like this? I also removed the failover.c files, which aren't used anymore (and were pretty useless after the cleanup anyway)
Much easier to read. Thanks.
Signed-off-by: Patrick Georgi patrick.georgi@coresystems.de
Acked-by: Myles Watson mylesgw@gmail.com
Thanks, Myles