]> git.kernelconcepts.de Git - karo-tx-uboot.git/blobdiff - cpu/mpc86xx/fdt.c
ppc/85xx/86xx: Device tree fixup for number of cores
[karo-tx-uboot.git] / cpu / mpc86xx / fdt.c
index a36ee30c3f0d1b8196378bb8d4af5af53b16923e..51f3f4c2203ba6f1d18d3cbe917b76ac614d1aa7 100644 (file)
@@ -13,6 +13,8 @@
 
 DECLARE_GLOBAL_DATA_PTR;
 
+extern void ft_fixup_num_cores(void *blob);
+
 void ft_cpu_setup(void *blob, bd_t *bd)
 {
 #ifdef CONFIG_MP
@@ -54,4 +56,5 @@ void ft_cpu_setup(void *blob, bd_t *bd)
        if (off < 0)
                printf("%s: %s\n", __FUNCTION__, fdt_strerror(off));
 #endif
+       ft_fixup_num_cores(blob);
 }