diff options
author | Kumar Gala <galak@kernel.crashing.org> | 2010-06-09 22:33:53 -0500 |
---|---|---|
committer | Kumar Gala <galak@kernel.crashing.org> | 2010-07-16 10:55:08 -0500 |
commit | 8f3a7fa4a230f5e974e99b617138e2aaa45109e7 (patch) | |
tree | 0a6687513dc8baa6144306721048af316da77272 /arch/powerpc/cpu/mpc86xx/fdt.c | |
parent | 11beefa38267b756252de5d3ed4f88c45f3442c7 (diff) | |
download | u-boot-imx-8f3a7fa4a230f5e974e99b617138e2aaa45109e7.zip u-boot-imx-8f3a7fa4a230f5e974e99b617138e2aaa45109e7.tar.gz u-boot-imx-8f3a7fa4a230f5e974e99b617138e2aaa45109e7.tar.bz2 |
powerpc/8xxx: Add is_core_disabled to remove disabled cores from dtb
If we explicitly disabled a core remove it from the dtb we pass on to
the kernel.
Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
Diffstat (limited to 'arch/powerpc/cpu/mpc86xx/fdt.c')
-rw-r--r-- | arch/powerpc/cpu/mpc86xx/fdt.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/arch/powerpc/cpu/mpc86xx/fdt.c b/arch/powerpc/cpu/mpc86xx/fdt.c index 51f3f4c..ff89ee5 100644 --- a/arch/powerpc/cpu/mpc86xx/fdt.c +++ b/arch/powerpc/cpu/mpc86xx/fdt.c @@ -1,5 +1,5 @@ /* - * Copyright 2008 Freescale Semiconductor, Inc. + * Copyright 2008,2010 Freescale Semiconductor, Inc. * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License @@ -55,6 +55,7 @@ void ft_cpu_setup(void *blob, bd_t *bd) off = fdt_add_mem_rsv(blob, bootpg, (u64)4096); if (off < 0) printf("%s: %s\n", __FUNCTION__, fdt_strerror(off)); -#endif + ft_fixup_num_cores(blob); +#endif } |