mirror of
https://github.com/AsahiLinux/m1n1
synced 2024-11-23 07:03:08 +00:00
kboot: Only try to parse actual CPUs in /cpus
Signed-off-by: Hector Martin <marcan@marcan.st>
This commit is contained in:
parent
2736f0dd07
commit
b9f1eb29e9
2 changed files with 5 additions and 1 deletions
|
@ -206,6 +206,10 @@ static int dt_set_cpus(void)
|
|||
int node, cpu = 0;
|
||||
fdt_for_each_subnode(node, dt, cpus)
|
||||
{
|
||||
const char *name = fdt_get_name(dt, node, NULL);
|
||||
if (strncmp(name, "cpu@", 4))
|
||||
continue;
|
||||
|
||||
const fdt64_t *prop = fdt_getprop(dt, node, "reg", NULL);
|
||||
if (!prop)
|
||||
bail("FDT: failed to get reg property of CPU\n");
|
||||
|
|
|
@ -177,7 +177,7 @@ int payload_run(void)
|
|||
smp_start_secondaries();
|
||||
|
||||
if (kboot_prepare_dt(fdt)) {
|
||||
printf("Failed to prepare FDT!");
|
||||
printf("Failed to prepare FDT!\n");
|
||||
return -1;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue